aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/initialization.md
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2017-11-30 09:25:50 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2017-11-30 09:35:26 +0300
commitb6baf0c88411824ce99f1ad4b9de64fa37ad96ea (patch)
tree98071989102db61cfcb5001d9213cf1ed1d9a6a8 /guides/source/initialization.md
parentf7e3c686685fb89e67293440d24356f93fa34847 (diff)
downloadrails-b6baf0c88411824ce99f1ad4b9de64fa37ad96ea.tar.gz
rails-b6baf0c88411824ce99f1ad4b9de64fa37ad96ea.tar.bz2
rails-b6baf0c88411824ce99f1ad4b9de64fa37ad96ea.zip
Cosmetic changes [ci skip]
Diffstat (limited to 'guides/source/initialization.md')
-rw-r--r--guides/source/initialization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md
index 1541ea38cd..c4f1df487b 100644
--- a/guides/source/initialization.md
+++ b/guides/source/initialization.md
@@ -93,7 +93,7 @@ require 'bundler/setup' # Set up gems listed in the Gemfile.
In a standard Rails application, there's a `Gemfile` which declares all
dependencies of the application. `config/boot.rb` sets
-`ENV['BUNDLE_GEMFILE']` to the location of this file. If the Gemfile
+`ENV['BUNDLE_GEMFILE']` to the location of this file. If the `Gemfile`
exists, then `bundler/setup` is required. The require is used by Bundler to
configure the load path for your Gemfile's dependencies.