From 8ca22780d91445711ca15b161b447903fe754893 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 20 Nov 2018 13:47:05 +0000 Subject: [PATCH] Fix newline --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b53030f..dec62279 100644 --- a/README.md +++ b/README.md @@ -249,6 +249,7 @@ Only Mutating Changed Code -------------------------- Running mutant for the first time on an existing codebase can be a rather disheartening experience due to the large number of alive mutations found! Mutant has a setting that can help. Using the `--since` argument, mutant will only mutate code that has been modified. This allows you to introduce mutant into an existing code base without drowning in errors. Example usage that will mutate all code changed between master and the current branch: + ``` bundle exec mutant --include lib --require virtus --since master --use rspec Virtus::Attribute#type ```