Skip to content

Commit 9e4e78a

Browse files
Update README.md
1 parent 3b1d0d3 commit 9e4e78a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +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", it will be created with a capacity of 10.
467+
// Get a buffer for "user1". It will be created with a capacity of 10.
468468
469469
var buffer1 = collection.EnsureBuffer("user1", 10);
470470
buffer1.Enqueue("Logged In");
@@ -561,7 +561,7 @@ A one-to-many collection that maps a key to an independent `IDurableTimeWindowB
561561
> This component respects the registered [`TimeProvider`](https://learn.microsoft.com/en-us/dotnet/api/system.timeprovider).
562562
563563
```csharp
564-
// Get a buffer for "user1", 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.
565565
566566
var buffer1 = collection.EnsureBuffer("user1", TimeSpan.FromMinutes(10));
567567
buffer1.Enqueue("Logged In");

0 commit comments

Comments
 (0)