From 8b33609ae2904c845cbb469a5680eabd69095e8e Mon Sep 17 00:00:00 2001 From: Mr-SD Date: Sat, 1 Apr 2017 00:16:07 -0300 Subject: [PATCH] Corrects error on dynamodb example (#149) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 548aae6b..99ef098a 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ table.put(1, "Japan", "Name" -> "Alice", "Age" -> 23, "Company" -> "Google") table.put(2, "U.S.", "Name" -> "Bob", "Age" -> 36, "Company" -> "Google") table.put(3, "Japan", "Name" -> "Chris", "Age" -> 29, "Company" -> "Amazon") -val googlers: Seq[Item] = table.scan(Seq("Company" -> cond.gt("Google"))) +val googlers: Seq[Item] = table.scan(Seq("Company" -> cond.eq("Google"))) table.destroy() ```