diff options
Diffstat (limited to 'tests/stdlib/trstgen.nim')
-rw-r--r-- | tests/stdlib/trstgen.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/trstgen.nim b/tests/stdlib/trstgen.nim index cbdb23cd6..667fec780 100644 --- a/tests/stdlib/trstgen.nim +++ b/tests/stdlib/trstgen.nim @@ -142,7 +142,7 @@ suite "YAML syntax highlighting": test "Directives: warnings": let input = dedent""" - .. non-existant-warning: Paragraph. + .. non-existent-warning: Paragraph. .. another.wrong:warning::: Paragraph. """ @@ -151,7 +151,7 @@ suite "YAML syntax highlighting": check output == "" doAssert warnings[].len == 2 check "(1, 24) Warning: RST style:" in warnings[0] - check "double colon :: may be missing at end of 'non-existant-warning'" in warnings[0] + check "double colon :: may be missing at end of 'non-existent-warning'" in warnings[0] check "(3, 25) Warning: RST style:" in warnings[1] check "RST style: too many colons for a directive (should be ::)" in warnings[1] |