From dda4b24beb0fe6609e566b77aca9bff0247d0d14 Mon Sep 17 00:00:00 2001 From: Alex Lavallee <73203142+lavalleeale@users.noreply.github.com> Date: Fri, 1 Oct 2021 08:46:11 -0700 Subject: [PATCH] Change "bash" to "shell" in getting started guide The command can be run in any shell, so shell is a more accurate word --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 1ca9489506..db3fb15581 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1344,7 +1344,7 @@ This is very similar to the `Article` model that you saw earlier. The difference is the line `belongs_to :article`, which sets up an Active Record _association_. You'll learn a little about associations in the next section of this guide. -The (`:references`) keyword used in the bash command is a special data type for models. +The (`:references`) keyword used in the shell command is a special data type for models. It creates a new column on your database table with the provided model name appended with an `_id` that can hold integer values. To get a better understanding, analyze the `db/schema.rb` file after running the migration.