summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSytse Sijbrandij <sytse@gitlab.com>2015-07-24 12:51:27 +0000
committerKamil Trzcinski <ayufan@ayufan.eu>2015-07-24 15:08:31 +0200
commit59b21b9d588a02231451f0d1e02ed4ac209e3d93 (patch)
treea5b605f878e512c581449500aba2a57be43e2c8a
parent4e6c975ada85ede86d76f5ca5d26bdf9c278873f (diff)
downloadgitlab-ci-59b21b9d588a02231451f0d1e02ed4ac209e3d93.tar.gz
Fix feedback
-rw-r--r--doc/yaml/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/yaml/README.md b/doc/yaml/README.md
index a47c678..9922a2c 100644
--- a/doc/yaml/README.md
+++ b/doc/yaml/README.md
@@ -14,8 +14,8 @@ job2:
```
The above example is the simplest possible CI configuration with two separate jobs,
-where each of the jobs executes a different commands.
-Of course a commands can execute code directly (`./configure;make;make install`) or run to a script (`test.sh`) in the respository.
+where each of the jobs executes a different command.
+Of course a command can execute code directly (`./configure;make;make install`) or run a script (`test.sh`) in the repository.
Jobs are used to create builds, which are then picked up by [runners](../runners/README.md) and executed within the environment of the runner.
What is important, is that each job is run independently from each other.