diff options
-rw-r--r-- | doc/manual_experimental.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual_experimental.rst b/doc/manual_experimental.rst index 95eab0100..228c20339 100644 --- a/doc/manual_experimental.rst +++ b/doc/manual_experimental.rst @@ -486,9 +486,9 @@ The concept types can be parametric just like the regular generic types: M.data[m * M.N + n] = v # Adapt the Matrix type to the concept's requirements - template Rows*(M: type Matrix): int = M.M - template Cols*(M: type Matrix): int = M.N - template ValueType*(M: type Matrix): type = M.T + template Rows*(M: typedesc[Matrix]): int = M.M + template Cols*(M: typedesc[Matrix]): int = M.N + template ValueType*(M: typedesc[Matrix]): typedesc = M.T ------------- ### usage.nim |