From 7ccfd6c94ba4e8213f4b701b6b26ed400b78c9b8 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 19 Jul 2013 16:29:10 -0700 Subject: [PATCH] :lipstick: --- src/app/text-buffer.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/text-buffer.coffee b/src/app/text-buffer.coffee index a80953ac0..686b49250 100644 --- a/src/app/text-buffer.coffee +++ b/src/app/text-buffer.coffee @@ -439,8 +439,8 @@ class TextBuffer # hasTail - if `false`, the marker is created without a tail # # Returns a {Number} representing the new marker's ID. - markRange: (range, attributes={}) -> - @text.markRange(range, attributes) + markRange: (range, options={}) -> + @text.markRange(range, options) # Constructs a new marker at a given position. #