lib/toml-rb/grammars/document.citrus in toml-rb-2.0.1 vs lib/toml-rb/grammars/document.citrus in toml-rb-2.0.2

- old
+ new

@@ -13,10 +13,10 @@ rule table (space? '[' stripped_key ']' comment?) <TomlRB::TableParser> end rule keyvalue - (stripped_key '=' space? v:(toml_values) comment?) <TomlRB::KeyvalueParser> + (stripped_key '=' space? v:(toml_values) comment? space) <TomlRB::KeyvalueParser> end rule inline_table (space? '{' (keyvalue? (',' keyvalue)*)? space? '}' ) <TomlRB::InlineTableParser> end