From cd2e78f04f1f06c6acdcd2b98b2eb335044ab774 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 5 Nov 2013 11:46:40 -0800 Subject: [PATCH] Fix indentation of comments Ref #1081 --- src/editor.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor.coffee b/src/editor.coffee index e657781dc..d5c6db21f 100644 --- a/src/editor.coffee +++ b/src/editor.coffee @@ -1694,12 +1694,12 @@ class Editor extends View getGrammar: -> @activeEditSession.getGrammar() - # {Delegates to: EditSession.setGrammar} + # {Delegates to: EditSession.setGrammar} setGrammar: (grammar) -> throw new Error("Only mini-editors can explicity set their grammar") unless @mini @activeEditSession.setGrammar(grammar) - # {Delegates to: EditSession.reloadGrammar} + # {Delegates to: EditSession.reloadGrammar} reloadGrammar: -> @activeEditSession.reloadGrammar()