aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:59:10 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:59:10 +0100
commitf1f5de2efdb5e3cd0c72db175096705283f17eb6 (patch)
tree0dffd6fef52347351ccac0c314c52e0ebc96ab86 /railties/guides/source
parent74c8ff53e7fff1e7c1ceaf5f5205668dfa81557d (diff)
downloadrails-f1f5de2efdb5e3cd0c72db175096705283f17eb6.tar.gz
rails-f1f5de2efdb5e3cd0c72db175096705283f17eb6.tar.bz2
rails-f1f5de2efdb5e3cd0c72db175096705283f17eb6.zip
Fix two typos.
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/debugging_rails_applications.textile2
-rw-r--r--railties/guides/source/testing.textile2
2 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/debugging_rails_applications.textile b/railties/guides/source/debugging_rails_applications.textile
index dd89bef027..b1d6db2e55 100644
--- a/railties/guides/source/debugging_rails_applications.textile
+++ b/railties/guides/source/debugging_rails_applications.textile
@@ -627,7 +627,7 @@ To install it run:
sudo gem install bleak_house
</shell>
-Then setup you application for profiling. Then add the following at the bottom of config/environment.rb:
+Then setup your application for profiling. Then add the following at the bottom of config/environment.rb:
<ruby>
require 'bleak_house' if ENV['BLEAK_HOUSE']
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile
index 9cf41b7aab..7938cd441d 100644
--- a/railties/guides/source/testing.textile
+++ b/railties/guides/source/testing.textile
@@ -201,7 +201,7 @@ This line of code is called an _assertion_. An assertion is a line of code that
Every test contains one or more assertions. Only when all the assertions are successful the test passes.
-h4. Preparing you Application for Testing
+h4. Preparing your Application for Testing
Before you can run your tests you need to ensure that the test database structure is current. For this you can use the following rake commands: