Fix doc comment

This commit is contained in:
Garen Torikian 2012-10-23 11:46:36 -07:00 committed by nightwing
commit aca8b9a73b

View file

@ -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;