aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_support_core_extensions.textile
diff options
context:
space:
mode:
authorEvan Farrar <evanfarrar@gmail.com>2011-05-29 11:25:37 -0400
committerEvan Farrar <evanfarrar@gmail.com>2011-05-29 11:25:37 -0400
commitbfce2a4cd3843226db92fb43314ef4af1afa536f (patch)
treeccf89a734a8d40d990e6a1fdcf42aa9636d66bdc /railties/guides/source/active_support_core_extensions.textile
parent8314c8ebb9f1d85fccb6c305ad1d868f98ea84f7 (diff)
downloadrails-bfce2a4cd3843226db92fb43314ef4af1afa536f.tar.gz
rails-bfce2a4cd3843226db92fb43314ef4af1afa536f.tar.bz2
rails-bfce2a4cd3843226db92fb43314ef4af1afa536f.zip
Typo and sentence restructuring
Diffstat (limited to 'railties/guides/source/active_support_core_extensions.textile')
-rw-r--r--railties/guides/source/active_support_core_extensions.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile
index 43aa6dfbbb..12c2f2413b 100644
--- a/railties/guides/source/active_support_core_extensions.textile
+++ b/railties/guides/source/active_support_core_extensions.textile
@@ -3024,7 +3024,7 @@ Date.new(2010, 1, 31).change(:month => 2)
h5(#date-durations). Durations
-Durations can be added and substracted to dates:
+Durations can be added to and subtracted from dates:
<ruby>
d = Date.current
@@ -3232,7 +3232,7 @@ DateTime.current.change(:month => 2, :day => 30)
h5(#datetime-durations). Durations
-Durations can be added and substracted to datetimes:
+Durations can be added to and subtracted from datetimes:
<ruby>
now = DateTime.current
@@ -3353,7 +3353,7 @@ If the time to be constructed lies beyond the range supported by +Time+ in the r
h5(#time-durations). Durations
-Durations can be added and substracted to time objects:
+Durations can be added to and subtracted from time objects:
<ruby>
now = Time.current