Skip to content

Commit 9224b31

Browse files
authored
Update README.md
1 parent fad82f8 commit 9224b31

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,7 @@ var tasks = await client.GetActiveTasksAsync();
268268
```csharp
269269
// CRUD
270270
await rebels.AddAsync(rebel);
271-
await rebels.AddAsync(rebel, batch: true);
272271
await rebels.AddOrUpdateAsync(rebel);
273-
await rebels.AddOrUpdateAsync(rebel, batch: true);
274272
await rebels.RemoveAsync(rebel);
275273
var rebel = await rebels.FindAsync(id);
276274
var rebel = await rebels.FindAsync(id, withConflicts: true);
@@ -400,7 +398,7 @@ await _rebels.FindAsync("1", new FindOptions { Rev = "1-xxx" });
400398
await _rebels.AddOrUpdateAsync(r, new AddOrUpdateOptions { Rev = "1-xxx" });
401399
```
402400

403-
For attachements revisions are supported by 'CouchAttachment' class which is passing 'DocumentRev' to 'DownloadAttachmentAsync(..)' and 'DownloadAttachmentAsStreamAsync(..)'.
401+
For attachements revisions are supported by `CouchAttachment` class which is passing `DocumentRev` to `DownloadAttachmentAsync(..)` and `DownloadAttachmentAsStreamAsync(..)`.
404402

405403
## DB Changes Feed
406404

0 commit comments

Comments
 (0)