Fix doc comment
This commit is contained in:
parent
23f7fc4658
commit
aca8b9a73b
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue