diff options
author | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-11-21 15:21:22 -0500 |
---|---|---|
committer | Arthur Nogueira Neves <arthurnn@gmail.com> | 2014-11-21 15:21:22 -0500 |
commit | f28d1ddd507174ac233b773cc4f35c3c05ad32e7 (patch) | |
tree | 01047b9574d9b017f7325744757b1232b710fa57 | |
parent | 7e375afba30951b60a3e606ccbfe3f28b0df5e1a (diff) | |
parent | 27908faf63bb96372254d5d407952d98254f81a8 (diff) | |
download | rails-f28d1ddd507174ac233b773cc4f35c3c05ad32e7.tar.gz rails-f28d1ddd507174ac233b773cc4f35c3c05ad32e7.tar.bz2 rails-f28d1ddd507174ac233b773cc4f35c3c05ad32e7.zip |
Merge pull request #17705 from fgo/patch-14
Move 'the' outside of SQLite and Bundler link text [ci skip]
-rw-r--r-- | guides/source/getting_started.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 87cb6d8b0b..dc63ae62b1 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -101,7 +101,7 @@ If you don't have Ruby installed have a look at install Ruby on your platform. Many popular UNIX-like OSes ship with an acceptable version of SQLite3. Windows -users and others can find installation instructions at [the SQLite3 website](https://www.sqlite.org). +users and others can find installation instructions at the [SQLite3 website](https://www.sqlite.org). Verify that it is correctly installed and in your PATH: ```bash @@ -165,7 +165,7 @@ of the files and folders that Rails created by default: |config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).| |config.ru|Rack configuration for Rack based servers used to start the application.| |db/|Contains your current database schema, as well as the database migrations.| -|Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see [the Bundler website](http://bundler.io).| +|Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the [Bundler website](http://bundler.io).| |lib/|Extended modules for your application.| |log/|Application log files.| |public/|The only folder seen by the world as-is. Contains static files and compiled assets.| |