From 157fdb813cb27e0778cee4aa72eb3e2b624e919f Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 2 Apr 2019 19:46:32 -0600 Subject: [PATCH] Fix doc regarding hook execution order --- src/spectator/dsl/structure_dsl.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spectator/dsl/structure_dsl.cr b/src/spectator/dsl/structure_dsl.cr index be3edfb..2cceea4 100644 --- a/src/spectator/dsl/structure_dsl.cr +++ b/src/spectator/dsl/structure_dsl.cr @@ -1272,7 +1272,7 @@ module Spectator::DSL # pre_condition { expect(array.size).to eq(3) } # 2 # ``` # - # With nested groups, the inner blocks will run first. + # With nested groups, the outer blocks will run first. # ``` # describe Something do # pre_condition { is_expected.to_not be_nil } # 1