Skip to content

Commit f6be6f1

Browse files
committed
Fix typo
Fixes #689.
1 parent 4d7e5ef commit f6be6f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1700,7 +1700,7 @@ export interface DocumentCollection<T extends object = any>
17001700
* ```js
17011701
* const db = new Database();
17021702
* const collection = db.collection("some-collection");
1703-
* const result = await collection.save(
1703+
* const result = await collection.saveAll(
17041704
* [
17051705
* { _key: "a", color: "blue", count: 1 },
17061706
* { _key: "b", color: "red", count: 2 },

0 commit comments

Comments
 (0)