diff --git a/README.md b/README.md
index 9b1393b..bcd7d22 100644
--- a/README.md
+++ b/README.md
@@ -15,14 +15,14 @@ The following modules are required:
 
 I've included a setup.py that will install these dependencies if you run:
 ```
-python setup.py install`
+python setup.py install
 ```
 
 ## Usage
 csrgen [fqdn]
 
 ```
-python csrgen test.test.com
+python csrgen -n test.test.com
 ```
 
 When more than one hostname is provided, a SAN (Subject Alternate Name)
@@ -31,5 +31,12 @@ certificate and request are generated.  This can be acheived by adding a -s.
 csrgen <hostname> -s <san0> <san1>
 
 ```
-python csrgen test.test.com -s mushu.test.com pushu.test.com
+python csrgen -n test.test.com -s mushu.test.com pushu.test.com
 ```
+
+# TODO
+- Consolidate Python 2.7 & 3.5
+- For CLI (not -f), ensure a -n is provided or "fail" gracefully.
+- Have the C, ST, L, O, OU stored in a .conf file and ask if
+   these are the settings the user wants to use before running.
+- Turn this into a Class.