From 3d228291041bf004ce6c365c392e8a6b69f42c6c Mon Sep 17 00:00:00 2001 From: Philip Schatz Date: Thu, 29 Sep 2016 14:23:17 -0400 Subject: [PATCH 1/2] :bug: documentation for TextEditor::indentationForBufferRow() --- src/text-editor.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/text-editor.coffee b/src/text-editor.coffee index 1224cb70e..8b2d1aa40 100644 --- a/src/text-editor.coffee +++ b/src/text-editor.coffee @@ -2930,9 +2930,9 @@ class TextEditor extends Model Section: Indentation ### - # Essential: Get the indentation level of the given a buffer row. + # Essential: Get the indentation level of the given buffer row. # - # Returns how deeply the given row is indented based on the soft tabs and + # Determines how deeply the given row is indented based on the soft tabs and # tab length settings of this editor. Note that if soft tabs are enabled and # the tab length is 2, a row with 4 leading spaces would have an indentation # level of 2. From a7d30abdcf0f266f342be8dc64dd75ffd1b172b7 Mon Sep 17 00:00:00 2001 From: Philip Schatz Date: Thu, 29 Sep 2016 14:47:29 -0400 Subject: [PATCH 2/2] :bug: documentation for TextEditor::indentLevelForLine [ci skip] --- src/text-editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text-editor.coffee b/src/text-editor.coffee index 8b2d1aa40..878020e29 100644 --- a/src/text-editor.coffee +++ b/src/text-editor.coffee @@ -2973,7 +2973,7 @@ class TextEditor extends Model # Extended: Get the indentation level of the given line of text. # - # Returns how deeply the given line is indented based on the soft tabs and + # Determines how deeply the given line is indented based on the soft tabs and # tab length settings of this editor. Note that if soft tabs are enabled and # the tab length is 2, a row with 4 leading spaces would have an indentation # level of 2.