Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 6662214

Browse files
committed
fix typo
1 parent 2131854 commit 6662214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ The `UpdateAdd` API provides several Typed API's for updating existing values:
413413
db.UpdateAdd(() => new Person { Score = 3 });
414414

415415
//Remove 5 points from Jackson Score
416-
db.UpdateAdd(() => new Person { Score = -5 }, x => where: x.LastName == "Jackson");
416+
db.UpdateAdd(() => new Person { Score = -5 }, where: x => x.LastName == "Jackson");
417417

418418
//Graduate everyone and increase everyone's Score by 2 points
419419
db.UpdateAdd(() => new Person { Points = 2, Graduated = true });

0 commit comments

Comments
 (0)