From 53255577013dd239a2592f579e659e1e676d2d21 Mon Sep 17 00:00:00 2001 From: Jacob Herrington Date: Tue, 3 Sep 2019 11:48:24 -0500 Subject: [PATCH] Add a comma and fix split infinitive (#3931) Split infinitives are super subjective: https://www.quickanddirtytips.com/education/grammar/split-infinitives --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd6175f4a..f6d507315 100644 --- a/README.md +++ b/README.md @@ -117,13 +117,13 @@ Current gotchas: potential environment issues with external services need to be #### Suggested Workflow -We use [Spring](https://github.com/rails/spring) and it is already included in the project. +We use [Spring](https://github.com/rails/spring), and it is already included in the project. -1. Use the provided bin stubs to automatically start Spring, i.e. `bin/rails server`, `bin/rspec spec/models/`, `bin/rails db:migrate`. +1. Use the provided bin stubs to start Spring automatically, i.e. `bin/rails server`, `bin/rspec spec/models/`, `bin/rails db:migrate`. 1. If Spring isn't picking up on new changes, use `spring stop`. For example, Spring should always be restarted if there's a change in environment key. 1. Check Spring's status whenever with `spring status`. -Caveat: `bin/rspec` is not equipped with Spring because it affects Simplecov's result. Instead use `bin/spring rspec`. +Caveat: `bin/rspec` is not equipped with Spring because it affects Simplecov's result. Instead, use `bin/spring rspec`. ## Additional docs