From 19c68550754e5ab32d9a13a3f991d1b5a639e121 Mon Sep 17 00:00:00 2001 From: Michael Hagar Date: Thu, 18 Jun 2020 21:17:52 -0500 Subject: [PATCH] Add comma after however Not having the comma changes the meaning of the word - from "any way" with no comma, to "but actually" with a comma. It is the latter meaning the guides are intending. --- guides/source/layouts_and_rendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md index b72efaadc8..b390de9bce 100644 --- a/guides/source/layouts_and_rendering.md +++ b/guides/source/layouts_and_rendering.md @@ -53,7 +53,7 @@ And you have a view file `app/views/books/index.html.erb`: Rails will automatically render `app/views/books/index.html.erb` when you navigate to `/books` and you will see "Books are coming soon!" on your screen. -However a coming soon screen is only minimally useful, so you will soon create your `Book` model and add the index action to `BooksController`: +However, a coming soon screen is only minimally useful, so you will soon create your `Book` model and add the index action to `BooksController`: ```ruby class BooksController < ApplicationController