Rename autoIndentNewlines to autoIndentNewline

This commit is contained in:
probablycorey
2013-05-07 15:22:36 -07:00
parent 38d4e3a097
commit 1f025817f1
2 changed files with 3 additions and 3 deletions

View File

@@ -366,7 +366,7 @@ class EditSession
# text - A {String} representing the text to insert.
# options - A set of options equivalent to {Selection.insertText}
insertText: (text, options={}) ->
options.autoIndentNewlines ?= @shouldAutoIndent()
options.autoIndentNewline ?= @shouldAutoIndent()
options.autoDecreaseIndent ?= @shouldAutoIndent()
@mutateSelectedText (selection) -> selection.insertText(text, options)