diff options
author | Jason Lenny <jason@gitlab.com> | 2019-08-02 08:08:32 +0000 |
---|---|---|
committer | Jason Lenny <jason@gitlab.com> | 2019-08-02 08:08:32 +0000 |
commit | 8e9ffac5036d83643c7d3be370026cd423bd56fd (patch) | |
tree | c8fd13f779c8845e1f96fdd352f8d758d731dcb3 | |
parent | 44b10f2df48424db95712c875833893f13f6ae0b (diff) | |
download | gitlab-ce-8e9ffac5036d83643c7d3be370026cd423bd56fd.tar.gz |
Apply suggestion to doc/ci/yaml/README.md
-rw-r--r-- | doc/ci/yaml/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index efbd99e0a04..853bac463e5 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -1670,7 +1670,7 @@ and bring back the old behavior. The `needs:` keyword allows you to execute jobs out-of-order, allowing you to implement a [directed acyclic graph](../directed_acyclic_graph/index.md) in your `.gitlab-ci.yml`. This allows to run some jobs earlier than other ones, disregarding stage ordering -such that you can have multiple stages running concurrently. +so you can have multiple stages running concurrently. Let's consider the following example: |