Skip to content

Commit

Permalink
Merge pull request #2103 from yoyo837/patch-1
Browse files Browse the repository at this point in the history
[Fix] Link does not end with '.'
  • Loading branch information
ljharb committed Jan 2, 2019
2 parents 4da90ea + e9cfc16 commit 11a66c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/version.js
Expand Up @@ -39,7 +39,7 @@ function getReactVersionFromContext(context) {
confVer = String(settingsVersion);
} else if (!warnedForMissingVersion) {
error('Warning: React version not specified in eslint-plugin-react settings. ' +
'See https://github.com/yannickcr/eslint-plugin-react#configuration.');
'See https://github.com/yannickcr/eslint-plugin-react#configuration .');
warnedForMissingVersion = true;
}
confVer = /^[0-9]+\.[0-9]+$/.test(confVer) ? `${confVer}.0` : confVer;
Expand Down

0 comments on commit 11a66c0

Please sign in to comment.