From e8ee08d159402f521b2aaab50bf91b3e485238f8 Mon Sep 17 00:00:00 2001
From: Erik Ordway <ordwaye@evergreen.edu>
Date: Tue, 18 Nov 2014 11:37:39 -0800
Subject: [PATCH] set indent_style to valid value

Per the documentation for editorconfig the two valid values for ```indent_style```  are 'tab' or 'space'
---
 .editorconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.editorconfig b/.editorconfig
index 2dc8a89c3..65d44abc7 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -7,7 +7,7 @@ root = true
 charset = utf-8
 trim_trailing_whitespace = true
 insert_final_newline = true
-indent_style = spaces
+indent_style = space
 indent_size = 2
 
 [*.md]