Skip to content

Commit 3b1d0d3

Browse files
Update README.md
1 parent e984d2e commit 3b1d0d3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,7 @@ A one-to-many collection that maps a key to an independent `IDurableRingBuffer<T
464464
- **Fine-Grained Persistence**: Any operation on a single buffer results in a small, specific log-entry, rather than re-serializing all buffers.
465465

466466
```csharp
467-
// Get a buffer for "user1".
468-
// Since it's new, it will be created with a capacity of 10.
467+
// Get a buffer for "user1", it will be created with a capacity of 10.
469468
470469
var buffer1 = collection.EnsureBuffer("user1", 10);
471470
buffer1.Enqueue("Logged In");
@@ -562,8 +561,7 @@ A one-to-many collection that maps a key to an independent `IDurableTimeWindowB
562561
> This component respects the registered [`TimeProvider`](https://learn.microsoft.com/en-us/dotnet/api/system.timeprovider).
563562
564563
```csharp
565-
// Get a buffer for "user1".
566-
// Since it's new, it will be created with a window of 10 minutes.
564+
// Get a buffer for "user1", it will be created with a window of 10 minutes.
567565
568566
var buffer1 = collection.EnsureBuffer("user1", TimeSpan.FromMinutes(10));
569567
buffer1.Enqueue("Logged In");

0 commit comments

Comments
 (0)