From 60f8f951e460b25d22622aeaf3315d6614679230 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 15 Aug 2019 10:59:53 -0500 Subject: [PATCH] Fix syntax highlighting in readme --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 9d985890..93729786 100644 --- a/README.md +++ b/README.md @@ -95,22 +95,22 @@ Getting started 5. Add the following to your `.gitignore` file to ensure that coverage results are not tracked by Git (optional): - ``` - echo "coverage" >> .gitignore - ``` - Or if you use Windows: - ``` - echo coverage >> .gitignore - ``` - - If you're making a Rails application, SimpleCov comes with built-in configurations (see below for information on - profiles) that will get you started with groups for your Controllers, Views, Models and Helpers. To use it, the - first two lines of your test_helper should be like this: - - ```ruby - require 'simplecov' - SimpleCov.start 'rails' - ``` + ``` + echo "coverage" >> .gitignore + ``` + Or if you use Windows: + ``` + echo coverage >> .gitignore + ``` + + If you're making a Rails application, SimpleCov comes with built-in configurations (see below for information on + profiles) that will get you started with groups for your Controllers, Views, Models and Helpers. To use it, the + first two lines of your test_helper should be like this: + + ```ruby + require 'simplecov' + SimpleCov.start 'rails' + ``` ## Example output