From 81987efed758e6bd40b6140fe80f3a9aaf28d94e Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 21 Jan 2014 21:00:00 -0700 Subject: [PATCH] Fix typo --- docs/internals/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals/configuration.md b/docs/internals/configuration.md index 37048f3d0..81766b8e4 100644 --- a/docs/internals/configuration.md +++ b/docs/internals/configuration.md @@ -8,7 +8,7 @@ value of a namespaced config key with `atom.config.get`: ```coffeescript # read a value with `config.get` -@showInvisibles() if config.get "edtior.showInvisibles" +@showInvisibles() if config.get "editor.showInvisibles" ``` Or you can use the `::observeConfig` to track changes from any view object.