Skip to content

Commit

Permalink
Fix out of sync values in JSDoc
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Rotherham <work@colinr.com>
  • Loading branch information
romaricpascal and colinrotherham committed Oct 11, 2022
1 parent 4dcdeae commit a5ed606
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/govuk/components/character-count/character-count.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { I18n } from '../../i18n.mjs'
* Message notifying users they're 1 character under the limit
* @param {String} [config.i18n.charactersUnderLimitOther="You have %{count} characters remaining"]
* Message notifying users they're any number of characters under the limit
* @param {String} [config.i18n.charactersAtLimit="You have no characters remaining"]
* @param {String} [config.i18n.charactersAtLimit="You have 0 characters remaining"]
* Message notifying users they've reached the limit number of characters
* @param {String} [config.i18n.charactersOverLimitOne="You have %{count} character too many"]
* Message notifying users they're 1 character over the limit
Expand All @@ -40,7 +40,7 @@ import { I18n } from '../../i18n.mjs'
* Message notifying users they're 1 word under the limit
* @param {String} [config.i18n.wordsUnderLimitOther="You have %{count} words remaining"]
* Message notifying users they're any number of words under the limit
* @param {String} [config.i18n.wordsAtLimit="You have no words remaining"]
* @param {String} [config.i18n.wordsAtLimit="You have 0 words remaining"]
* Message notifying users they've reached the limit number of words
* @param {String} [config.i18n.wordsOverLimitOne="You have %{count} word too many"]
* Message notifying users they're 1 word over the limit
Expand Down

0 comments on commit a5ed606

Please sign in to comment.