summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcia Ramos <virtua.creative@gmail.com>2017-02-22 13:07:14 -0300
committerMarcia Ramos <virtua.creative@gmail.com>2017-02-22 13:07:14 -0300
commit20009ca9a29cc1011c7235aae652592d77318d98 (patch)
tree0d0f95996e44d7b26bbf683ab903afae1565c353
parent3dcc2ca593ecc989265f3ed9487220836e91619e (diff)
downloadgitlab-ce-20009ca9a29cc1011c7235aae652592d77318d98.tar.gz
typo
-rw-r--r--doc/pages/getting_started_part_three.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/pages/getting_started_part_three.md b/doc/pages/getting_started_part_three.md
index 28fb7f08bdf..10ae3abb9e5 100644
--- a/doc/pages/getting_started_part_three.md
+++ b/doc/pages/getting_started_part_three.md
@@ -187,7 +187,7 @@ test:
The `test` job is running on the stage `test`, Jekyll will build the site in a directory called `test`, and this job will affect all the branches except `master`.
-The best benefit of applying _stages_ to different _jobs_ is that every job in the same stage builds in parallel. So, if your web app needs more than one test before being deployed, you can run all your test at the same time, it's not necessary to wait on test to finish to run the other. Of course, this is just a brief introduction of GitLab CI and GitLab Runner, which are tools much more powerful than that. This is what you need to be able to create and tweak your builds for your GitLab Pages site.
+The best benefit of applying _stages_ to different _jobs_ is that every job in the same stage builds in parallel. So, if your web app needs more than one test before being deployed, you can run all your test at the same time, it's not necessary to wait one test to finish to run the other. Of course, this is just a brief introduction of GitLab CI and GitLab Runner, which are tools much more powerful than that. This is what you need to be able to create and tweak your builds for your GitLab Pages site.
#### Before Script