summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-13 18:40:24 +0100
committerGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-13 18:40:24 +0100
commita4e29f86d7851da12e40491d517c1af17da66336 (patch)
tree82429921845e82cec97d935ec3148dd00cfb2c78
parent1b64a4730b85cd1effec48d1751e088a80b82b77 (diff)
downloadgitlab-a4e29f86d7851da12e40491d517c1af17da66336.tar.gz
remove "=" in examples for consistency
-rw-r--r--docs/cli.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/cli.rst b/docs/cli.rst
index f00babc..2d150e6 100644
--- a/docs/cli.rst
+++ b/docs/cli.rst
@@ -174,12 +174,12 @@ Create a snippet:
.. code-block:: console
- $ gitlab project-snippet create --project-id=2
+ $ gitlab project-snippet create --project-id 2
Impossible to create object (Missing attribute(s): title, file-name, code)
$ # oops, let's add the attributes:
- $ gitlab project-snippet create --project-id=2 --title="the title" \
- --file-name="the name" --code="the code"
+ $ gitlab project-snippet create --project-id 2 --title "the title" \
+ --file-name "the name" --code "the code"
Define the status of a commit (as would be done from a CI tool for example):