Skip to content

Commit 7668e86

Browse files
committed
Merge pull request Codeception#16 from klaude/typo_fix
Fix a typo.
2 parents 7bc69fa + f2c8aed commit 7668e86

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/reference/configuration.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Configuration was explained in [Getting Started](http://codeception.com/docs/02-
99

1010
## Global Configuration
1111

12-
Configuration file `codeception.yml` is generated by `codecept bootsrtap` command and contains all parameters for running Codeception.
12+
Configuration file `codeception.yml` is generated by `codecept bootstrap` command and contains all parameters for running Codeception.
1313

1414
Example:
1515

@@ -31,7 +31,7 @@ modules:
3131
dsn: ''
3232
user: ''
3333
password: ''
34-
dump: tests/_data/dump.sql
34+
dump: tests/_data/dump.sql
3535
{% endhighlight %}
3636

3737
### Parameters
@@ -46,7 +46,7 @@ modules:
4646
#### Settings
4747

4848
* bootstrap - the bootstrap file always loaded before each step. Can be useful for loading fixtures. But probably you want manual control, then remove this line and use `require_once '_bootstrap.php'` inside tests.
49-
* suite_class - suite is used as a tests container.
49+
* suite_class - suite is used as a tests container.
5050
* colors - colored ooutput, by default is `false` on Windows and `true` on other systems. Install [ANSICon](http://adoxa.110mb.com/ansicon/) on Windows and set to true.
5151
* memory_limit - PHP memory consuming parameter. Increase this value if you run out of memory.
5252
* log - weather to log tests execution process to file.
@@ -94,7 +94,7 @@ modules:
9494
#### Modules
9595

9696
* enabled - a list of modules. The order of list *matters* as the next modules can replace actions from previous ones.
97-
* config - config of module. The configuration parameters for each module is documented on pages for each module. There are required and optional pameters.
97+
* config - config of module. The configuration parameters for each module is documented on pages for each module. There are required and optional pameters.
9898

9999
Examples:
100100

@@ -107,7 +107,7 @@ modules:
107107
dsn: 'mysql:host=localhost;dbname=testdb'
108108
user: root
109109
password:
110-
dump: tests/_data/dump.sql
110+
dump: tests/_data/dump.sql
111111
{% endhighlight %}
112112

113113
Configuring [Selenium2](http://codeception.com/docs/modules/Selenium2) module:

0 commit comments

Comments
 (0)