diff --git a/README.md b/README.md
index 7045d96..d558b29 100644
--- a/README.md
+++ b/README.md
@@ -129,7 +129,7 @@ If you want to learn more about the syntax and how `leia` puts together the abov
 
 ## Skipping
 
-You can also skip tests. This is useful if you want to stub out a test to do later but don't have the time to do right now.
+You can also skip tests. This is useful if you want to stub out a test for later.
 
 ```bash
 # Should write this test later and dont want to forget it
diff --git a/cli/default.js b/cli/default.js
index 857ef16..076d77d 100644
--- a/cli/default.js
+++ b/cli/default.js
@@ -123,7 +123,6 @@ class LeiaCommand extends Command {
       .fromPairs()
       .value();
 
-
     // make sure we split any headers that need to be split
     ['setupHeader', 'testHeader', 'cleanupHeader'].forEach((header) => {
       if (options[header].length === 1) options[header] = options[header][0].split(',');