diff options
-rw-r--r-- | lib/pure/typetraits.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/typetraits.nim b/lib/pure/typetraits.nim index f0838415b..c53b68864 100644 --- a/lib/pure/typetraits.nim +++ b/lib/pure/typetraits.nim @@ -52,11 +52,11 @@ proc genericHead*(t: typedesc): typedesc {.magic: "TypeTrait".} ## seq[int].genericHead[float] will be seq[float] ## ## A compile-time error will be produced if the supplied type - ## is not generic + ## is not generic. proc stripGenericParams*(t: typedesc): typedesc {.magic: "TypeTrait".} ## This trait is similar to `genericHead`, but instead of producing - ## error for non-generic types, it will just return them unmodified + ## error for non-generic types, it will just return them unmodified. proc supportsCopyMem*(t: typedesc): bool {.magic: "TypeTrait".} ## This trait returns true iff the type ``t`` is safe to use for |