Skip to content

Commit

Permalink
disambiguation
Browse files Browse the repository at this point in the history
  • Loading branch information
kr committed Apr 23, 2013
1 parent 2aab2b7 commit 64c009c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions decode.go
Expand Up @@ -4,13 +4,13 @@
//
// foo=bar a=14 baz="hello kitty" cool%story=bro f %^asdf
//
// Result:
// Example result in JSON:
//
// { "foo": "bar", "a": 14, "baz": "hello kitty", "cool%story": "bro", "f": "", "%^asdf": "" }
// { "foo": "bar", "a": 14, "baz": "hello kitty", "cool%story": "bro", "f": true, "%^asdf": true }
//
// EBNFish:
//
// ident_byte = any byte greater than ' ', excluding '=', '"'
// ident_byte = any byte greater than ' ', excluding '=' and '"'
// string_byte = any byte excluding '"' and '\'
// garbage = !ident_byte
// ident = ident_byte, { ident byte }
Expand Down

0 comments on commit 64c009c

Please sign in to comment.