From c0790e73a5cea99592cba5abd0793ba3275f4c99 Mon Sep 17 00:00:00 2001 From: webmaster777 Date: Thu, 8 Sep 2022 08:53:03 +0200 Subject: [PATCH 1/2] Update 06-ModulesAndHelpers.md Fix freudian typo --- guides/06-ModulesAndHelpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/06-ModulesAndHelpers.md b/guides/06-ModulesAndHelpers.md index d1aac3f53..d2816a4e3 100644 --- a/guides/06-ModulesAndHelpers.md +++ b/guides/06-ModulesAndHelpers.md @@ -109,7 +109,7 @@ modules: The modules won't conflict as actions with the same names won't be loaded. The REST module has parts for `Xml` and `Json` in the same way. If you are testing a REST service with only JSON responses, -you can enable just the JSON Fart of this module: +you can enable just the JSON part of this module: ```yaml From 27dbc218074438c9c7236b8f42fab9531071944b Mon Sep 17 00:00:00 2001 From: webmaster777 Date: Thu, 8 Sep 2022 09:07:16 +0200 Subject: [PATCH 2/2] Update 06-ModulesAndHelpers.md Fix F --- guides/06-ModulesAndHelpers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/06-ModulesAndHelpers.md b/guides/06-ModulesAndHelpers.md index d2816a4e3..664753da0 100644 --- a/guides/06-ModulesAndHelpers.md +++ b/guides/06-ModulesAndHelpers.md @@ -374,7 +374,7 @@ class WebDriver extends \Codeception\Module ``` The host and port parameter can be redefined in the suite configuration. -Values are set in the `Fodules:config` section of the configuration file. +Values are set in the `modules:config` section of the configuration file. ```yaml modules: @@ -434,7 +434,7 @@ Once loaded, parameter variables can be used as module configuration values. Use a variable name wrapped with `%` as a placeholder and it will be replaced by its value. Let's say we want to specify credentials for a cloud testing service. We have loaded `SAUCE_USER` -and `SAUCE_KEY` variables from Fnvironment, and now we are passing their values into config of `WebDriver`: +and `SAUCE_KEY` variables from environment, and now we are passing their values into config of `WebDriver`: ```yaml modules: @@ -445,7 +445,7 @@ modules: ``` -Parameters are also useful Fo provide connection credentials for the `Db` module (taken from Laravel's .env files): +Parameters are also useful to provide connection credentials for the `Db` module (taken from Laravel's .env files): ```yaml modules: