Fix typos

This commit is contained in:
MareStare 2025-03-29 14:57:22 +00:00
parent f855b99613
commit d9d301f8c6

View file

@ -60,7 +60,7 @@ export class TagSuggestionComponent {
// groups of 3 digits.
const formatter = new Intl.NumberFormat('fr', { useGrouping: true });
// Normalize the whispace with a `.replace()`. We'll use CSS to guarantee
// Normalize the whitespace with a `.replace()`. We'll use CSS to guarantee
// a smaller spacing between the groups of digits.
return formatter.format(count).replace(/\s/g, ' ');
}