Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
Corrects error on dynamodb example (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-SD authored and seratch committed Apr 1, 2017
1 parent 9da7d10 commit 8b33609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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()
```
Expand Down

0 comments on commit 8b33609

Please sign in to comment.