diff options
-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): |