diff --git a/README.md b/README.md
index 988dfe7..ecf21c9 100644
--- a/README.md
+++ b/README.md
@@ -180,88 +180,88 @@ Click the below function names to open more detailed documentation.
#### Create Strings
--
+
String CSON.stringify(data, replacer?, indent?)
Converts an Object into a CSON String
--
+
String CSON.createCSONString(data, opts?, next?)
Converts an Object into a CSON String
--
+
String CSON.createJSONString(data, opts?, next?)
Converts an Object into a JSON String
--
+
String CSON.createString(data, opts?, next?)
Converts an Object into a String of the desired format If the format option is not specified, we default to CSON
### Parse Strings
--
+
Object CSON.parse(data, opts?, next?)
Parses a CSON String into an Object
--
+
Object CSON.parseCSONString(data, opts?, next?)
Parses a CSON String into an Object
--
+
Object CSON.parseJSONString(data, opts?, next?)
Parses a JSON String into an Object
--
+
Object CSON.parseCSString(data, opts?, next?)
Parses a CoffeeScript String into an Object
--
+
Object CSON.parseJSString(data, opts?, next?)
Parses a JavaScript String into an Object
--
+
Object CSON.parseString(data, opts?, next?)
Converts a String of the desired format into an Object If the format option is not specified, we default to CSON
#### Parse Files
--
+
Object CSON.load(filePath, opts?, next?)
Parses a CSON file into an Object
--
+
Object CSON.parseCSONFile(filePath, opts?, next?)
Parses a CSON file into an Object
--
+
Object CSON.parseJSONFile(filePath, opts?, next?)
Parses a JSON file into an Object
--
+
Object CSON.parseCSFile(filePath, opts?, next?)
Parses a CoffeeScript file into an Object
--
+
Object CSON.parseJSFile(filePath, opts?, next?)
Parses a JavaScript file into an Object
--
+
Object CSON.parseFile(filePath, opts?, next?)
Parses a file path of the desired format into an Object If the format option is not specified, we use the filename to detect what it should be, otherwise we default to CSON
### Require Files
--
+
Object CSON.requireCSFile(filePath, opts?, next?)
Requires a CoffeeScript file and returns the result Object
--
+
Object CSON.requireJSFile(filePath, opts?, next?)
Requires a JavaScript file and returns the result Object
--
+
Object CSON.requireFile(filePath, opts?, next?)
Requires or parses a file path of the desired format into an Object If the format option is not specified, we use the filename to detect what it should be, otherwise we default to parsing CSON