Skip to content

Commit

Permalink
fix: grammer around webmention endpoints
Browse files Browse the repository at this point in the history
Ref #1
  • Loading branch information
remy committed Jun 18, 2019
1 parent 4046b19 commit d9d8d85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/wm.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ if (!send) {
if (res.length === 0) {
if (wm.mentions.length) {
console.log(
'No active webmention endpoints found on %s entries found (try increasing with --limit N)',
'No webmention endpoints found on %s entries found (try increasing with --limit N)',
wm.mentions.length
);
} else {
console.log('No active webmention endpoints found');
console.log('No webmention endpoints found');
}
}

Expand Down
4 changes: 2 additions & 2 deletions routes/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ module.exports = async (req, res) => {
return send(
JSON.stringify({
error: true,
message: `No webmentions found on ${
message: `No webmention endpoints found ${
wm.mentions.length
} discovered entries`,
} entries`,
})
);
}
Expand Down

0 comments on commit d9d8d85

Please sign in to comment.