From 6dd5fc4637285be4d393683552b8a374928af660 Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Sun, 5 Jan 2020 13:54:03 +0100 Subject: [PATCH] README update. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0aa7585..18428e1 100644 --- a/README.md +++ b/README.md @@ -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") ```