about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOndřej Hruška <ondra@ondrovo.com>2017-09-20 21:28:44 +0200
committerOndřej Hruška <ondra@ondrovo.com>2017-09-20 21:28:44 +0200
commit8c0733a14e0480f40b8f39933bccf4de94b11aa0 (patch)
treec6f5c0287b754dd54f87702f13aa6a8feb943a72
parent3783062450b1f6b6635bea5e75a4f0942e2f0b4b (diff)
typo in comment
-rw-r--r--app/javascript/mastodon/actions/compose.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js
index 95336cea2..b47fbc8ba 100644
--- a/app/javascript/mastodon/actions/compose.js
+++ b/app/javascript/mastodon/actions/compose.js
@@ -230,9 +230,9 @@ export function fetchComposeSuggestions(token) {
       });
     };
   } else if (leading === ':') {
-    // mojos
+    // shortcode
     let allShortcodes = Object.keys(emojione.emojioneList);
-    // TODO when we have custom emojons merged, add theme to this shortcode list
+    // TODO when we have custom emojons merged, add them to this shortcode list
     return (dispatch) => {
       dispatch(readyComposeSuggestionsTxt(token, allShortcodes.filter((sc) => {
         return sc.indexOf(token) === 0;