diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-17 02:14:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 11:14:09 +0200 |
commit | 7e94420847d2d18347410099e97195ddebe8b85f (patch) | |
tree | 667576cbc4d9f7adea5162a256856222b983c6b4 /lib/system/assign.nim | |
parent | 8e474fbb57c2f7b58a840b5b30230c2267633c8e (diff) | |
download | Nim-7e94420847d2d18347410099e97195ddebe8b85f.tar.gz |
cString => cSourceString; tyCString => tyCstring so that error msgs show cstring, not cString (#17744)
Diffstat (limited to 'lib/system/assign.nim')
-rw-r--r-- | lib/system/assign.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/assign.nim b/lib/system/assign.nim index faf16fc90..20b854107 100644 --- a/lib/system/assign.nim +++ b/lib/system/assign.nim @@ -167,7 +167,7 @@ when false: of tyPointer: k = "range" of tyOpenArray: k = "openarray" of tyString: k = "string" - of tyCString: k = "cstring" + of tyCstring: k = "cstring" of tyInt: k = "int" of tyInt32: k = "int32" else: k = "other" |