diff options
author | Miran <narimiran@disroot.org> | 2020-11-10 21:53:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 21:53:25 +0100 |
commit | bbe49a14ae827b6474d692042406716a3b3dd71f (patch) | |
tree | 87408943da9ab5e805a17532bdcdb6f033df5f68 /tests/stdlib | |
parent | bc3c0487d3059900864d6e8074cf83555a5c446d (diff) | |
download | Nim-bbe49a14ae827b6474d692042406716a3b3dd71f.tar.gz |
Correct all eggs (#15906)
* "eg" is a misspelled "egg", "e.g." is "exempli gratia" * Also, "ie" is "i.e.".
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tjsonutils.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tjsonutils.nim b/tests/stdlib/tjsonutils.nim index fefd412e7..28f05ecbe 100644 --- a/tests/stdlib/tjsonutils.nim +++ b/tests/stdlib/tjsonutils.nim @@ -57,7 +57,7 @@ template fn() = """[1.1,"fo",120,[10,11],[true,false],[{"mode":"modeCaseSensitive","table":{"y":"Y","z":"Z"}},{"mode":"modeCaseSensitive","table":{}}],[0,3],-4,{"foo":0.5,"bar":{"a1":"abc"},"bar2":null}]""" block: - # edge case when user defined `==` doesn't handle `nil` well, eg: + # edge case when user defined `==` doesn't handle `nil` well, e.g.: # https://github.com/nim-lang/nimble/blob/63695f490728e3935692c29f3d71944d83bb1e83/src/nimblepkg/version.nim#L105 testRoundtrip(@[Foo(id: 10), nil]): """[{"id":10},null]""" |