diff --git a/docs/index.md b/docs/index.md index 0bdf44886..54a505f5d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -557,13 +557,13 @@ We could represent the spec tree that Ginkgo generates as follows: Describe: "Books" |_BeforeEach: |_Describe: "Extracting names" - |_When: "author has both names" - |_It: "extracts the last name", - |_It: "extracts the first name", - |_When: "author has one name" - |_BeforeEach: - |_It: "extracts the last name", - |_It: "returns empty first name", + |_When: "author has both names" + |_It: "extracts the last name", + |_It: "extracts the first name", + |_When: "author has one name" + |_BeforeEach: + |_It: "extracts the last name", + |_It: "returns empty first name", ``` Note that Ginkgo is saving off just the setup and subject node closures.