From db0ee65fc8e1cece59bdcf73062611279741d433 Mon Sep 17 00:00:00 2001 From: Daniel Lublin Date: Sun, 1 Dec 2019 16:22:12 +0100 Subject: [PATCH] fix: correct to singular location Signed-off-by: Daniel Lublin --- public/js/lib/editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/lib/editor/index.js b/public/js/lib/editor/index.js index 4b30a130..d4c69b14 100644 --- a/public/js/lib/editor/index.js +++ b/public/js/lib/editor/index.js @@ -331,7 +331,7 @@ export default class Editor { if (!this.statusBar) return var cursor = this.editor.getCursor() - var cursorText = 'Line ' + (cursor.line + 1) + ', Columns ' + (cursor.ch + 1) + var cursorText = 'Line ' + (cursor.line + 1) + ', Column ' + (cursor.ch + 1) this.statusCursor.text(cursorText) var fileText = ' — ' + editor.lineCount() + ' Lines' this.statusFile.text(fileText)