Skip to content

Commit 3d0c25c

Browse files
authored
Fix step generators configuration instructions
1 parent 430ea3f commit 3d0c25c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/08-Customization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -372,14 +372,14 @@ List of available step decorators:
372372
- [TryTo](https://github.com/Codeception/Codeception/blob/4.0/src/Codeception/Step/TryTo.php) - failed action will be ignored.
373373
- [Retry](https://github.com/Codeception/Codeception/blob/4.0/src/Codeception/Step/Retry.php) - failed action will be retried automatically.
374374

375-
Step decorators can be added to suite config inside `steps` block:
375+
Step decorators can be added to suite config inside `step_decorators` block:
376376

377377
{% highlight yaml %}
378378
yml
379379
step_decorators:
380-
- Codeception/Step/TryTo
381-
- Codeception/Step/Retry
382-
- Codeception/Step/ConditionalAssertion
380+
- Codeception\Step\TryTo
381+
- Codeception\Step\Retry
382+
- Codeception\Step\ConditionalAssertion
383383

384384
{% endhighlight %}
385385

0 commit comments

Comments
 (0)