diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2017-11-13 19:18:48 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2017-11-13 19:18:48 +0000 |
commit | e8362a8c92467b12db308ac88539d8f131edd1e9 (patch) | |
tree | 15c9dafa670978a22f16308b02dd9090c248c2e3 | |
parent | 2932f532c35a1fff58486920a03227862594f54d (diff) | |
download | gitlab-ce-e8362a8c92467b12db308ac88539d8f131edd1e9.tar.gz |
Fix typofix-typo
-rw-r--r-- | app/assets/javascripts/lib/utils/text_utility.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/lib/utils/text_utility.js b/app/assets/javascripts/lib/utils/text_utility.js index 28ab9dddc4c..a1475b92c7e 100644 --- a/app/assets/javascripts/lib/utils/text_utility.js +++ b/app/assets/javascripts/lib/utils/text_utility.js @@ -18,7 +18,7 @@ export const addDelimiter = text => (text ? text.toString().replace(/\B(?=(\d{3} export const highCountTrim = count => (count > 99 ? '99+' : count); /** - * Converst first char to uppercase and replaces undercores with spaces + * Converts first char to uppercase and replaces undercores with spaces * @param {String} string * @requires {String} */ |