Skip to content

Commit

Permalink
docs(README): require slash at end of URL
Browse files Browse the repository at this point in the history
  • Loading branch information
hutson committed Oct 26, 2018
1 parent 4caf1ec commit 9560434
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/conventional-gitlab-releaser/README.md
Expand Up @@ -111,7 +111,7 @@ $ npm install --save conventional-gitlab-releaser
var conventionalGitlabReleaser = require('conventional-gitlab-releaser');

var AUTH = {
url: 'https://gitlab.com/api/v4',
url: 'https://gitlab.com/api/v4/',
token: '0126af95c0e2d9b0a7c78738c4c00a860b04acc8'
};

Expand All @@ -129,13 +129,13 @@ conventionalGitlabReleaser(AUTH, {
An authentication object containing the following:

* `token` - A [GitLab Private Token](https://gitlab.com/profile/account) with _Developer_ permissions on the project to be released.
* `url` - The GitLab API (such as `https://gitlab.com/api/v4`).
* `url` - The GitLab API (such as `https://gitlab.com/api/v4/`).

For example:

```javascript
{
url: 'https://gitlab.com/api/v4',
url: 'https://gitlab.com/api/v4/',
token: '0126af95c0e2d9b0a7c78738c4c00a860b04acc8'
}
```
Expand Down

0 comments on commit 9560434

Please sign in to comment.