File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
469469var buffer1 = collection .EnsureBuffer (" user1" , 10 );
470470buffer1 .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
566566var buffer1 = collection .EnsureBuffer (" user1" , TimeSpan .FromMinutes (10 ));
567567buffer1 .Enqueue (" Logged In" );
You can’t perform that action at this time.
0 commit comments