From aca8b9a73b5b74e1b588f9bc52343026f43512a1 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 23 Oct 2012 11:46:36 -0700 Subject: [PATCH] Fix doc comment --- lib/ace/editor.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ace/editor.js b/lib/ace/editor.js index 85fb5a18..1551473c 100644 --- a/lib/ace/editor.js +++ b/lib/ace/editor.js @@ -1337,10 +1337,10 @@ var Editor = function(renderer, session) { return null; }; /** - * Editor.modifyNumber() - * - * If the character before the cursor is a number, you can increase/or decrease its value by one (by pressing Ctrl+Shift+Up/Down), or - * 10 (by pressing Ctrl+Alt+Shift+Up/Down). + * Editor.modifyNumber(amount) + * - amount (Number): The value to change the numeral by (can be negative to decrease value) + * + * If the character before the cursor is a number, this functions changes its value by `amount`. **/ this.modifyNumber = function(amount) { var row = this.selection.getCursor().row;