From 9cf496218229f90c1e2bd592e05d7dd7c7b7ef75 Mon Sep 17 00:00:00 2001 From: Helge Eichhorn Date: Mon, 26 Sep 2022 19:17:48 +0200 Subject: [PATCH] Fix typo (#38) --- src/parser.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.jl b/src/parser.jl index 258dc25..1a15baf 100644 --- a/src/parser.jl +++ b/src/parser.jl @@ -222,7 +222,7 @@ const err_message = Dict( ErrEmptyBareKey => "bare key cannot be empty", ErrExpectedNewLineKeyValue => "expected newline after key value pair", ErrNewLineInString => "newline character in single quoted string", - ErrUnexpectedEndString => "string literal ened unexpectedly", + ErrUnexpectedEndString => "string literal ended unexpectedly", ErrExpectedEndOfTable => "expected end of table ']'", ErrAddKeyToInlineTable => "tried to add a new key to an inline table", ErrArrayTreatedAsDictionary => "tried to add a key to an array",