docs: Fix capitalization of keyboard keys.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-08-10 17:09:14 -07:00
committed by Tim Abbott
parent c155403884
commit fb2e56e3c9
28 changed files with 158 additions and 158 deletions

View File

@@ -91,7 +91,7 @@ exports.set_up_alert_words = function () {
$("#create_alert_word_form").on("keypress", "#create_alert_word_name", (event) => {
const key = event.which;
// Handle enter (13) as "add".
// Handle Enter (13) as "add".
if (key === 13) {
event.preventDefault();