diff --git a/guides/from-zero-to-a-fully-secured-cluster.mdx b/guides/the-ravendb-kubernetes-operator-way.mdx similarity index 100% rename from guides/from-zero-to-a-fully-secured-cluster.mdx rename to guides/the-ravendb-kubernetes-operator-way.mdx diff --git a/guides/transactional-outbox.mdx b/guides/transactional-outbox.mdx index 119eac23e4..4bc56ce977 100644 --- a/guides/transactional-outbox.mdx +++ b/guides/transactional-outbox.mdx @@ -40,11 +40,10 @@ This is how the concept of the [transactional outbox](https://en.wikipedia.org/w ```csharp using (var session = store.OpenAsyncSession()) { -await session.StoreAsync(invoice); - -await session.StoreAsync(invoiceCreatedMessage); - -await session.SaveChangesAsync(); // single atomic commit + await session.StoreAsync(invoice); + await session.StoreAsync(invoiceCreatedMessage); + + await session.SaveChangesAsync(); // single atomic commit } ```