diff options
author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-01-13 18:40:24 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-01-13 18:40:24 +0100 |
commit | a4e29f86d7851da12e40491d517c1af17da66336 (patch) | |
tree | 82429921845e82cec97d935ec3148dd00cfb2c78 | |
parent | 1b64a4730b85cd1effec48d1751e088a80b82b77 (diff) | |
download | gitlab-a4e29f86d7851da12e40491d517c1af17da66336.tar.gz |
remove "=" in examples for consistency
-rw-r--r-- | docs/cli.rst | 6 |
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): |