aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions
diff options
context:
space:
mode:
authorTom Stuart <tom@experthuman.com>2012-02-05 15:16:03 +0000
committerTom Stuart <tom@experthuman.com>2012-02-05 15:16:03 +0000
commit7f8f05f6275bae436fa801d2988498940ad641a7 (patch)
treeb2b651c6d30abfe81da0c812eb3fcddc25dc3d6c /actionpack/lib/action_dispatch/testing/assertions
parent71abd4fbdd98127dc2b4ca7c9508d38cc4caf888 (diff)
downloadrails-7f8f05f6275bae436fa801d2988498940ad641a7.tar.gz
rails-7f8f05f6275bae436fa801d2988498940ad641a7.tar.bz2
rails-7f8f05f6275bae436fa801d2988498940ad641a7.zip
Stop referring to Atom as "ATOM"
$ curl -s http://www.ietf.org/rfc/rfc4287 | grep -io ATOM | sort | uniq -c 582 atom 175 Atom
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/assertions')
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/selector.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/selector.rb b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
index fe149c654d..8eed85bce2 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/selector.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
@@ -340,7 +340,7 @@ module ActionDispatch
# element +encoded+. It then calls the block with all un-encoded elements.
#
# ==== Examples
- # # Selects all bold tags from within the title of an ATOM feed's entries (perhaps to nab a section name prefix)
+ # # Selects all bold tags from within the title of an Atom feed's entries (perhaps to nab a section name prefix)
# assert_select "feed[xmlns='http://www.w3.org/2005/Atom']" do
# # Select each entry item and then the title item
# assert_select "entry>title" do