summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-11-02 15:19:15 +0000
committerRobert Speicher <robert@gitlab.com>2016-11-02 15:19:15 +0000
commitacc2714afae0e3ff5c5b1cf5eae5fa93d92dfc0b (patch)
tree349ca7b562a7825455f9957e9941ffd704876f3e
parentc321670653d042ff007dac8322756d8e4c86ef5f (diff)
parentc1ee879c66ea81b28d36d1c1f0b34ead296cffbf (diff)
downloadgitlab-ce-vue-ize-field-errors.tar.gz
Merge branch 'rs-changelog-docs' into 'master' vue-ize-field-errors
Update examples in changelog docs to use single quotes around title [ci skip] See merge request !7246
-rw-r--r--doc/development/changelog.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development/changelog.md b/doc/development/changelog.md
index f10f4c6722a..d08c476e9d6 100644
--- a/doc/development/changelog.md
+++ b/doc/development/changelog.md
@@ -36,7 +36,7 @@ automatically.
Its simplest usage is to provide the value for `title`:
```text
-$ bin/changelog Hey DZ, I added a feature to GitLab!
+$ bin/changelog 'Hey DZ, I added a feature to GitLab!'
create changelogs/unreleased/my-feature.yml
---
title: Hey DZ, I added a feature to GitLab!
@@ -85,7 +85,7 @@ Use the **`--merge-request`** or **`-m`** argument to provide the
`merge_request` value:
```text
-$ bin/changelog Hey DZ, I added a feature to GitLab! -m 1983
+$ bin/changelog 'Hey DZ, I added a feature to GitLab!' -m 1983
create changelogs/unreleased/feature-hey-dz.yml
---
title: Hey DZ, I added a feature to GitLab!
@@ -118,7 +118,7 @@ Use the **`--git-username`** or **`-u`** argument to automatically fill in the
$ git config user.name
Jane Doe
-$ bin/changelog --u Hey DZ, I added a feature to GitLab!
+$ bin/changelog --u 'Hey DZ, I added a feature to GitLab!'
create changelogs/unreleased/feature-hey-dz.yml
---
title: Hey DZ, I added a feature to GitLab!