aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2014-11-22 02:37:56 +1100
committerFrancis Go <francis.go@gmail.com>2014-11-22 02:37:56 +1100
commit27908faf63bb96372254d5d407952d98254f81a8 (patch)
treeb41676b43a01f4f3ce73a5a161bded0bdc527a89 /guides/source/getting_started.md
parentdcb3ac2c3cae08875e0df60fef671a40ea96107f (diff)
downloadrails-27908faf63bb96372254d5d407952d98254f81a8.tar.gz
rails-27908faf63bb96372254d5d407952d98254f81a8.tar.bz2
rails-27908faf63bb96372254d5d407952d98254f81a8.zip
Move 'the' outside of SQLite and Bundler link text [ci skip]
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 1996158e27..e1554c9c93 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.|