Skip to content

Commit

Permalink
Fix Scottish Gaelic (gd) locale (#1925)
Browse files Browse the repository at this point in the history
Space should be after 'o chionn' not before
  • Loading branch information
leedriscoll committed Aug 31, 2020
1 parent eb7de3c commit c5db2d0
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 95 deletions.
2 changes: 1 addition & 1 deletion src/locale/gd/_lib/formatDistance/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default function formatDistance(token, count, options) {
if (options.comparison > 0) {
return 'ann an ' + result
} else {
return ' o chionn' + result
return 'o chionn ' + result
}
}

Expand Down

0 comments on commit c5db2d0

Please sign in to comment.