README update.

master
Luka Vandervelden 2020-01-05 13:54:03 +01:00
parent b93130dc99
commit 6dd5fc4637
1 changed files with 3 additions and 3 deletions

View File

@ -61,9 +61,9 @@ things << Thing.new "two", "word", ["number"] of String
things << Thing.new "three", "word", ["number"] of String
things << Thing.new "hello, world", "sentence", [] of String
things_by_tags.get? "number" # Will return an array of three things ("one", "two", "three").
things_by_category.get? "sentence" # Will return an array of one thing ("hello, world")
things_by_id.get? "one" # Will return a single thing ("one")
things_by_tags.get "number" # Will return an array of three things ("one", "two", "three").
things_by_category.get "sentence" # Will return an array of one thing ("hello, world")
things_by_id.get "one" # Will return a single thing ("one")
```