From f9e21c5616f2c37f932f2d55d91787cc3a901bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Elisi=C3=A1rio?= <140440389+rimedelis@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:53:39 +0000 Subject: [PATCH] refactor: fix typo --- guides/source/command_line.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/command_line.md b/guides/source/command_line.md index dd29db1c95d02..a48cc26477ba0 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -277,7 +277,7 @@ $ bin/rails generate controller Greetings hello invoke test_unit ``` -What all did this generate? It made sure a bunch of directories were in our application, and created a controller file, a view file, a functional test file, a helper for the view, a JavaScript file, and a stylesheet file. +What did all this generate? It made sure a bunch of directories were in our application, and created a controller file, a view file, a functional test file, a helper for the view, a JavaScript file, and a stylesheet file. Check out the controller and modify it a little (in `app/controllers/greetings_controller.rb`):