Skip to content

Commit

Permalink
fix(docs): template examples (#866)
Browse files Browse the repository at this point in the history
Placeholders are denoted with two curly braces.

Co-authored-by: Benjamin E. Coe <bencoe@google.com>
  • Loading branch information
ingmarh and bcoe committed Nov 30, 2021
1 parent 20d7cff commit 5917ad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/conventional-changelog-conventionalcommits/README.md
Expand Up @@ -20,7 +20,7 @@ const config = require('conventional-changelog-conventionalcommits')
module.exports = config({
"issuePrefixes": ["TEST-"],
"issueUrlFormat": "myBugTracker.com/{prefix}{id}"
"issueUrlFormat": "https://myBugTracker.com/{{prefix}}{{id}}"
})
```

Expand All @@ -31,7 +31,7 @@ or json config like that:
"preset": {
"name": "conventionalchangelog",
"issuePrefixes": ["TEST-"],
"issueUrlFormat": "myBugTracker.com/{prefix}{id}"
"issueUrlFormat": "https://myBugTracker.com/{{prefix}}{{id}}"
}
}
}
Expand Down

0 comments on commit 5917ad2

Please sign in to comment.