diff --git a/docs/index.md b/docs/index.md index 53da3b053..d0a42c1d8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -798,7 +798,7 @@ When Ginkgo runs these specs it will _first_ run the `BeforeEach` setup closures Abstractly, `JustBeforeEach` allows you to decouple **creation** from **configuration**. Creation occurs in the `JustBeforeEach` using configuration specified and modified by a chain of `BeforeEach`s. -As with `BeforeEach` you can have multiple `JustBeforeEach` nodes at different levels of container nesting. Ginkgo will first run all the `BeforeEach` closures from the outside in, then all the `JustBeforeEach` closures from the outside in. While powerful and flexible overuse of `JustBeforeEach` (and nest `JustBeforeEach`es in particular!) can lead to confusing suites to be sure to use `JustBeforeEach` judiciously!d +As with `BeforeEach` you can have multiple `JustBeforeEach` nodes at different levels of container nesting. Ginkgo will first run all the `BeforeEach` closures from the outside in, then all the `JustBeforeEach` closures from the outside in. While powerful and flexible overuse of `JustBeforeEach` (and nest `JustBeforeEach`es in particular!) can lead to confusing suites to be sure to use `JustBeforeEach` judiciously! ### Spec Cleanup: AfterEach and DeferCleanup