From ce1ff62cf49be1a99f4b8815e559cea16f787211 Mon Sep 17 00:00:00 2001 From: Anshuman Date: Sat, 25 Jun 2022 15:58:34 +0530 Subject: [PATCH] fixed typo --- core_dsl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core_dsl.go b/core_dsl.go index bdb908606..aaede5c5f 100644 --- a/core_dsl.go +++ b/core_dsl.go @@ -630,7 +630,7 @@ func JustAfterEach(args ...interface{}) bool { } /* -BeforeAll nodes are Setup nodes that can occur inside Ordered contaienrs. They run just once before any specs in the Ordered container run. +BeforeAll nodes are Setup nodes that can occur inside Ordered containers. They run just once before any specs in the Ordered container run. Multiple BeforeAll nodes can be defined in a given Ordered container however they cannot be nested inside any other container. @@ -643,7 +643,7 @@ func BeforeAll(args ...interface{}) bool { } /* -AfterAll nodes are Setup nodes that can occur inside Ordered contaienrs. They run just once after all specs in the Ordered container have run. +AfterAll nodes are Setup nodes that can occur inside Ordered containers. They run just once after all specs in the Ordered container have run. Multiple AfterAll nodes can be defined in a given Ordered container however they cannot be nested inside any other container.