summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2017-11-13 19:18:48 +0000
committerClement Ho <clemmakesapps@gmail.com>2017-11-13 19:18:48 +0000
commite8362a8c92467b12db308ac88539d8f131edd1e9 (patch)
tree15c9dafa670978a22f16308b02dd9090c248c2e3
parent2932f532c35a1fff58486920a03227862594f54d (diff)
downloadgitlab-ce-fix-typo.tar.gz
Fix typofix-typo
-rw-r--r--app/assets/javascripts/lib/utils/text_utility.js2
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}
*/