diff options
author | reactormonk <hafnersimon@gmail.com> | 2016-02-29 12:59:05 +0100 |
---|---|---|
committer | reactormonk <hafnersimon@gmail.com> | 2016-02-29 12:59:05 +0100 |
commit | ba16d423e0d0f95851a032f7d5705c244d8f6604 (patch) | |
tree | ef91d7dd981d91b4632cc1c9a0069d28a75464ce /compiler/canonicalizer.nim | |
parent | bd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff) | |
parent | d9cb85c2d81a447130307d0004b0ef515f3ff241 (diff) | |
download | Nim-ba16d423e0d0f95851a032f7d5705c244d8f6604.tar.gz |
Merge pull request #3913 from FedericoCeratto/devel
Spellcheck
Diffstat (limited to 'compiler/canonicalizer.nim')
-rw-r--r-- | compiler/canonicalizer.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/canonicalizer.nim b/compiler/canonicalizer.nim index 85dbe7536..089bce302 100644 --- a/compiler/canonicalizer.nim +++ b/compiler/canonicalizer.nim @@ -275,7 +275,7 @@ proc encodeType(w: PRodWriter, t: PType, result: var string) = return # we need no surrounding [] here because the type is in a line of its own if t.kind == tyForward: internalError("encodeType: tyForward") - # for the new rodfile viewer we use a preceeding [ so that the data section + # for the new rodfile viewer we use a preceding [ so that the data section # can easily be disambiguated: add(result, '[') encodeVInt(ord(t.kind), result) |