summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/pure/collections/sequtils.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim
index 069be9398..c85927808 100644
--- a/lib/pure/collections/sequtils.nim
+++ b/lib/pure/collections/sequtils.nim
@@ -707,8 +707,8 @@ template newSeqWith*(len: int, init: untyped): untyped =
 when not defined(nimscript):
   import macros
   macro asArray*(values: typed, targetType: typedesc): untyped =
-    ## converts a static array to an array of type ``targetType`` by converting
-    ## each value in the array to the specified type.
+    ## applies a type conversion to each of the elements in the specified
+    ## array literal. Each element is converted to the ``targetType`` type..
     ##
     ## Example:
     ##