From 3535ee7cd731f6ff2bf332b6cfb5d6ab793afb04 Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Fri, 26 Jun 2015 14:43:46 -0500 Subject: [PATCH] Fix README variable type --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6eda96c..ee77268 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ simplemde.codemirror.getValue(); - **autofocus**: If set `true`, autofocuses the editor. Defaults to `false`. - **lineWrapping**: If set `false`, disable line wrapping. Defaults to `true`. - **indentWithTabs**: If set `false`, indent using spaces instead of tabs. Defaults to `true`. -- **tabSize**: If set, customize the tab size. Defaults to `'2'`. +- **tabSize**: If set, customize the tab size. Defaults to `2`. ```JavaScript new SimpleMDE({ @@ -67,7 +67,7 @@ new SimpleMDE({ autofocus: true, lineWrapping: false, indentWithTabs: false, - tabSize: '4', + tabSize: 4, }); ```