summary refs log tree commit diff stats
path: root/tests/errmsgs/tsigmatch.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-09-02 10:27:35 +0200
committerAraq <rumpf_a@web.de>2019-09-02 10:27:35 +0200
commite76568764698be7561501c4809e996f3f1608f74 (patch)
tree04700154851f27af457836751a8425882b50e97d /tests/errmsgs/tsigmatch.nim
parente6ec88d4c39c458404061198b2a2f6b86c2caeaf (diff)
parentad82e65387f39970b0f12cbcb12d8b382236f3da (diff)
downloadNim-e76568764698be7561501c4809e996f3f1608f74.tar.gz
Merge branch 'devel' into uint-range-checks
Diffstat (limited to 'tests/errmsgs/tsigmatch.nim')
-rw-r--r--tests/errmsgs/tsigmatch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errmsgs/tsigmatch.nim b/tests/errmsgs/tsigmatch.nim
index 42a98a891..21e2c217d 100644
--- a/tests/errmsgs/tsigmatch.nim
+++ b/tests/errmsgs/tsigmatch.nim
@@ -36,7 +36,7 @@ tsigmatch.nim(143, 13) Error: type mismatch: got <array[0..0, proc (x: int){.gcs
 but expected one of:
 proc takesFuncs(fs: openArray[proc (x: int) {.gcsafe, locks: 0.}])
   first type mismatch at position: 1
-  required type for fs: openarray[proc (x: int){.closure, gcsafe, locks: 0.}]
+  required type for fs: openArray[proc (x: int){.closure, gcsafe, locks: 0.}]
   but expression '[proc (x: int) {.gcsafe, locks: 0.} = echo [x]]' is of type: array[0..0, proc (x: int){.gcsafe, locks: 0.}]
 
 expression: takesFuncs([proc (x: int) {.gcsafe, locks: 0.} = echo [x]])