diff options
author | Nindaleth <Nindaleth@users.noreply.github.com> | 2019-10-30 09:08:45 +0100 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-10-30 09:08:45 +0100 |
commit | 34dbc5699e8cb36e26bad5a57edc972b82f26c5f (patch) | |
tree | de04803327f19ef69b46ca46b4e16a09f77fa6d1 /tests/misc | |
parent | 1214960a1bde9b45c76caaff0cdea7d2d753b205 (diff) | |
download | Nim-34dbc5699e8cb36e26bad5a57edc972b82f26c5f.tar.gz |
fix several typos in documentation and comments (#12553)
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/tunsignedconv.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/tunsignedconv.nim b/tests/misc/tunsignedconv.nim index efe5f1302..17d137947 100644 --- a/tests/misc/tunsignedconv.nim +++ b/tests/misc/tunsignedconv.nim @@ -23,7 +23,7 @@ when false: var d32 = v8 + 10'i32 when false: - # these dont work yet because unsigned.nim is stupid. XXX We need to fix this. + # these don't work yet because unsigned.nim is stupid. XXX We need to fix this. var f8 = v16 + 10'u8 var f16 = v16 + 10'u16 var f32 = v16 + 10'u32 |