aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_support_overview.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-06-01 00:24:00 +0200
committerXavier Noria <fxn@hashref.com>2009-06-01 21:12:44 +0200
commitc842dbf16dd28e2fa5f7057cfac9604376638d09 (patch)
tree3dc2cbc2ce34c416818dd46c5d93dfea3d02b45f /railties/guides/source/active_support_overview.textile
parentc2917940f5997e824263d89f2bac7a0297fc6935 (diff)
downloadrails-c842dbf16dd28e2fa5f7057cfac9604376638d09.tar.gz
rails-c842dbf16dd28e2fa5f7057cfac9604376638d09.tar.bz2
rails-c842dbf16dd28e2fa5f7057cfac9604376638d09.zip
simplifies a sentence
Diffstat (limited to 'railties/guides/source/active_support_overview.textile')
-rw-r--r--railties/guides/source/active_support_overview.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_overview.textile b/railties/guides/source/active_support_overview.textile
index ef206422ed..3bdaa022e0 100644
--- a/railties/guides/source/active_support_overview.textile
+++ b/railties/guides/source/active_support_overview.textile
@@ -222,7 +222,7 @@ h3. Extensions to +Array+
h4. Accessing
-Active Support augments the API of arrays to ease certain ways of accessing them or subsets of them. For example, +to+ returns the subarray of elements up to the one at the passed index:
+Active Support augments the API of arrays to ease certain ways of accessing them. For example, +to+ returns the subarray of elements up to the one at the passed index:
<ruby>
%w(a b c d).to(2) # => %w(a b c)