From d2654cb70c9dc910fb9867f6b1fd3714a60974b1 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 8 Aug 2013 17:56:01 -0700 Subject: [PATCH] :lipstick: --- docs/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index d5fa1a2e1..08a4273f8 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -192,12 +192,12 @@ to apply styles to elements, Atom keymaps use selectors to associate keystrokes with events in specific contexts. Here's a small example, excerpted from Atom's built-in keymaps: -```coffee-script +```coffeescript '.editor': 'enter': 'editor:newline' -".select-list .editor.mini": - 'enter': 'core:confirm', +'.select-list .editor.mini': + 'enter': 'core:confirm' ``` This keymap defines the meaning of `enter` in two different contexts. In a