aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2008-11-08 05:06:04 -0600
committerMike Gunderloy <MikeG1@larkfarm.com>2008-11-08 05:06:04 -0600
commit89448b01aaf79b7721f2f6a0f255cab7f0a771f6 (patch)
tree251ab46e76f82da94c56cb530f3201d1fd9b975b /railties/doc
parent48e21793bf85263ff934409623f21975f8a8eebf (diff)
downloadrails-89448b01aaf79b7721f2f6a0f255cab7f0a771f6.tar.gz
rails-89448b01aaf79b7721f2f6a0f255cab7f0a771f6.tar.bz2
rails-89448b01aaf79b7721f2f6a0f255cab7f0a771f6.zip
Amend description of SQLite in Getting Started guide (#33)
Diffstat (limited to 'railties/doc')
-rw-r--r--railties/doc/guides/source/getting_started_with_rails.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/getting_started_with_rails.txt b/railties/doc/guides/source/getting_started_with_rails.txt
index 977a151f8e..bae8f9a4fd 100644
--- a/railties/doc/guides/source/getting_started_with_rails.txt
+++ b/railties/doc/guides/source/getting_started_with_rails.txt
@@ -186,7 +186,7 @@ If you open this file in a new Rails application, you'll see a default database
==== Configuring a SQLite Database
-Rails comes with built-in support for SQLite, which is a lightweight flat-file based database application. While a busy production environment may overload SQLite, it works well for development and testing. Rails defaults to using a SQLite database when creating a new project, but you can always change it later.
+Rails comes with built-in support for link:http://www.sqlite.org/[SQLite], which is a lightweight serverless database application. While a busy production environment may overload SQLite, it works well for development and testing. Rails defaults to using a SQLite database when creating a new project, but you can always change it later.
Here's the section of the default configuration file with connection information for the development environment: