Skip to content

Commit db0ee65

Browse files
committed
fix: correct to singular location
Signed-off-by: Daniel Lublin <daniel@lublin.se>
1 parent 5472622 commit db0ee65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/js/lib/editor/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export default class Editor {
331331
if (!this.statusBar) return
332332

333333
var cursor = this.editor.getCursor()
334-
var cursorText = 'Line ' + (cursor.line + 1) + ', Columns ' + (cursor.ch + 1)
334+
var cursorText = 'Line ' + (cursor.line + 1) + ', Column ' + (cursor.ch + 1)
335335
this.statusCursor.text(cursorText)
336336
var fileText = ' — ' + editor.lineCount() + ' Lines'
337337
this.statusFile.text(fileText)

0 commit comments

Comments
 (0)