Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/orleans/grains/transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Orleans transactions are opt-in. Both the silo and the client must be configured

```csharp
var builder = Host.CreateDefaultBuilder(args)
UseOrleans((context, siloBuilder) =>
.UseOrleans((context, siloBuilder) =>
{
siloBuilder.UseTransactions();
});
Expand All @@ -30,7 +30,7 @@ Likewise, to enable transactions on the client, call <xref:Orleans.Hosting.Clien

```csharp
var builder = Host.CreateDefaultBuilder(args)
UseOrleansClient((context, clientBuilder) =>
.UseOrleansClient((context, clientBuilder) =>
{
clientBuilder.UseTransactions();
});
Expand Down
Loading