From 880485988b4b99c965b2192865e2bbe69a58dd01 Mon Sep 17 00:00:00 2001 From: Krasimir Shontov Date: Tue, 6 Dec 2022 14:53:09 +0200 Subject: [PATCH] Fix typo in docs (#1089) --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 7f07f3c21..fb17a7c97 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1943,7 +1943,7 @@ var _ = SynchronizedAfterSuite(func() { This code will spin up a single database and ensure that every parallel Ginkgo process connects to the database and sets up an appropriately sharded namespace. Ginkgo does all the work of coordinating across these various closures and passing information back and forth - and all the complexity of the parallel setup in the test suite is now contained in the `Synchronized*` setup nodes. -Bu the way, we can clean all this up further using `DeferCleanup`. `DeferCleanup` is context aware and so knows that any cleanup code registered in a `BeforeSuite`/`SynchronizedBeforeSuite` should run at the end of the suite: +By the way, we can clean all this up further using `DeferCleanup`. `DeferCleanup` is context aware and so knows that any cleanup code registered in a `BeforeSuite`/`SynchronizedBeforeSuite` should run at the end of the suite: ```go var dbClient *db.Client