summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-14 17:30:46 +0000
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-14 17:30:46 +0000
commit227de8f06ff59069bdf56a9d74a2078d3559fe04 (patch)
tree9c78d9a6685a3efe0505cb41793ffd5df05d27b8
parent149460b8961f146c978639941897fbbfa43cbf13 (diff)
parente8362a8c92467b12db308ac88539d8f131edd1e9 (diff)
downloadgitlab-ce-227de8f06ff59069bdf56a9d74a2078d3559fe04.tar.gz
Merge branch 'fix-typo' into 'master'
Fix typo See merge request gitlab-org/gitlab-ce!15358
-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}
*/