summary refs log tree commit diff stats
path: root/tests/openarray/topenlen.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/openarray/topenlen.nim')
-rw-r--r--tests/openarray/topenlen.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openarray/topenlen.nim b/tests/openarray/topenlen.nim
index 83d58ac5c..164241b85 100644
--- a/tests/openarray/topenlen.nim
+++ b/tests/openarray/topenlen.nim
@@ -5,7 +5,7 @@ discard """
 
 proc choose(b: openArray[string]): string = return b[0]
 
-proc p(a, b: openarray[string]): int =
+proc p(a, b: openArray[string]): int =
   result = a.len + b.len - 1
   for j in 0 .. a.len: inc(result)
   discard choose(a)