summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-08-17 16:58:23 +0200
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-10-27 19:20:16 +0200
commitfdd52a6b237f22d06df38ba6fb879ae83c186a75 (patch)
tree8d20f09d12f12979d454d5b0df9651732e4f4e82
parent7abcb29d161651418b8ee9041712c31c9d0add06 (diff)
downloadgitlab-ce-fdd52a6b237f22d06df38ba6fb879ae83c186a75.tar.gz
Improve documentation for test coverage report badge
[ci skip]
-rw-r--r--doc/ci/pipelines.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ci/pipelines.md b/doc/ci/pipelines.md
index 729c1dc8c0d..a28f6f3ecdc 100644
--- a/doc/ci/pipelines.md
+++ b/doc/ci/pipelines.md
@@ -36,14 +36,14 @@ cancel the build, retry it, or erase the build trace.
## Badges
-There are build status and test coverage report badges available.
+Build status and test coverage report badges are available.
Go to pipeline settings to see available badges and code you can use to embed
-badges in the `README.md` or your website.
+badges in the `README.md` or on the website.
### Build status badge
-You can access a build status badge image using following link:
+You can access a build status badge image using the following link:
```
http://example.gitlab.com/namespace/project/badges/branch/build.svg
@@ -55,7 +55,7 @@ GitLab makes it possible to define the regular expression for coverage report,
that each build log will be matched against. This means that each build in the
pipeline can have the test coverage percentage value defined.
-You can access test coverage badge using following link:
+You can access the test coverage badge using following link:
```
http://example.gitlab.com/namespace/project/badges/branch/coverage.svg
@@ -63,7 +63,7 @@ http://example.gitlab.com/namespace/project/badges/branch/coverage.svg
If you would like to get the coverage report from the specific job, you can add
a `job=coverage_job_name` parameter to the URL. For example, it is possible to
-use following Markdown code to embed the est coverage report into `README.md`:
+use following Markdown code to embed the test coverage report into `README.md`:
```markdown
![coverage](http://gitlab.com/gitlab-org/gitlab-ce/badges/master/coverage.svg?job=coverage)