summary refs log tree commit diff stats
path: root/tests/concepts
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2017-01-27 01:21:35 +0200
committerZahary Karadjov <zahary@gmail.com>2017-03-24 17:03:55 +0200
commit9574d318ae1e4cf648f7384d99afadd8a2d89520 (patch)
treeb7eab728ec9b6adc591e8de5aad86f74b4df5629 /tests/concepts
parentc605d575746f45a722542c67ece0fcd133ba9799 (diff)
downloadNim-9574d318ae1e4cf648f7384d99afadd8a2d89520.tar.gz
use lower-case proc names
Diffstat (limited to 'tests/concepts')
-rw-r--r--tests/concepts/matrixalgo.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/concepts/matrixalgo.nim b/tests/concepts/matrixalgo.nim
index d02c70d37..39cf16685 100644
--- a/tests/concepts/matrixalgo.nim
+++ b/tests/concepts/matrixalgo.nim
@@ -9,7 +9,7 @@ type
     m[int, int] is T
     mvar[int, int] = T
 
-    type TransposedType = StripGenericParams(M)[C, R, T]
+    type TransposedType = stripGenericParams(M)[C, R, T]
 
   AnySquareMatrix*[N: static[int], T] = AnyMatrix[N, N, T]