Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
expede committed Jul 3, 2024
1 parent 1c0fbf8 commit daea8ea
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,18 @@ match = "['match', " selector ", " pattern "]" ; String wildcard matching
;; SELECTORS
selector = "." ; Identity
/ *(".") 1*(subselector) ; Nested subselectors
selector = "." ; Identity
/ 1*(subselector) ; Nested subselectors
subselector = "." 1*utf8 ; Dotted field selector
/ "['" string "']" ; Explicit field selector
/ "[" integer "]" ; Index selector
subselector = "." CHAR string ; Dotted field selector
/ *1(".") "['" string "']" ; Explicit field selector
/ *1(".") "[" integer "]" ; Index selector
/ *1(".") "[]" ; Collection values // FIXME doble check code
/ *1(".") "?" ; Try selector
;; SPECIAL LITERALS
pattern = *utf8
pattern = string ; Reminder: IPLD string are UTF-8
number = integer / float
```

Expand Down

0 comments on commit daea8ea

Please sign in to comment.