From 13b361c3406892b5de833c933ef526a8ee6d8901 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Wed, 10 Jul 2024 14:13:14 +0200 Subject: [PATCH] Update AdvancedUsage.md: Typos --- docs/AdvancedUsage.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/AdvancedUsage.md b/docs/AdvancedUsage.md index 71e116baa..fecd56e5c 100644 --- a/docs/AdvancedUsage.md +++ b/docs/AdvancedUsage.md @@ -318,10 +318,9 @@ class PageCest ## Before/After Attributes -You can control execution flow with `#[Bbefore]` and `#[After]` attributes. You may move common actions -into protected (non-test) methods and invoke them before or after the test method by putting them into attributes. -It is possible to invoke several methods by using more than one `#[Bbefore]` or `#[After]` attribute. -Methods are invoked in order from top to bottom. +You can control execution flow with `#[Before]` and `#[After]` attributes. You may move common actions +into protected (i.e. non-test) methods and invoke them before or after the test method by putting them into attributes. +When adding multiple `#[Before]` or `#[After]` attributes, ethods are invoked in order from top to bottom. ```php