Skip to content

Commit f6fa300

Browse files
committed
Bugfix in the README.md
1 parent 22ee76d commit f6fa300

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ people.put("Tony", { firstname: "Stark", lastname: "Doe", age: 45 });
4242

4343
// Query people
4444
people.find({
45-
where: person => age > 32
45+
where: person => person.age > 32
4646
}).then(personsOlderThat32 => {
4747
// personsOlderThat32 = [
4848
// { firstname: "Tim", lastname: "Burton", age: 61 },

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "depot-db",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "src/index.ts",

0 commit comments

Comments
 (0)