From 273203e4c9aef40277d82aab80a4d4e8ffa84106 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Tue, 20 May 2014 10:37:02 -0700 Subject: [PATCH] Fix typo --- spec/editor-component-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/editor-component-spec.coffee b/spec/editor-component-spec.coffee index c9ccab8bd..0bfafa006 100644 --- a/spec/editor-component-spec.coffee +++ b/spec/editor-component-spec.coffee @@ -101,7 +101,7 @@ describe "EditorComponent", -> atom.config.set("editor.showInvisibles", true) atom.config.set("editor.invisibles", invisibles) - it "displays spaces, tabs, and newlines as visible charachters", -> + it "displays spaces, tabs, and newlines as visible characters", -> editor.setText " a line with tabs\tand spaces " expect(component.lineNodeForScreenRow(0).textContent).toBe "#{invisibles.space}a line with tabs#{invisibles.tab} and spaces#{invisibles.space}#{invisibles.eol}"