From 098fa943565e06dafa67ca59ccf433939d2941b4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 7 Feb 2005 14:15:53 +0000 Subject: Fixed documentation snafus #575, #576, #577, #585 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@525 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/vendor/builder/xmlbase.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/lib/action_view/vendor/builder') diff --git a/actionpack/lib/action_view/vendor/builder/xmlbase.rb b/actionpack/lib/action_view/vendor/builder/xmlbase.rb index d065d6fae1..7202bb2ead 100644 --- a/actionpack/lib/action_view/vendor/builder/xmlbase.rb +++ b/actionpack/lib/action_view/vendor/builder/xmlbase.rb @@ -76,7 +76,7 @@ module Builder #:nodoc: end # Append text to the output target. Escape any markup. May be - # used within the markup brakets as: + # used within the markup brackets as: # # builder.p { br; text! "HI" } #=>


HI

def text!(text) @@ -84,7 +84,7 @@ module Builder #:nodoc: end # Append text to the output target without escaping any markup. - # May be used within the markup brakets as: + # May be used within the markup brackets as: # # builder.p { |x| x << "
HI" } #=>


HI

# @@ -94,7 +94,7 @@ module Builder #:nodoc: # # It is also useful for stacking builder objects. Builders only # use << to append to the target, so by supporting this - # method/operation builders can use oother builders as their + # method/operation builders can use other builders as their # targets. def <<(text) _text(text) -- cgit v1.2.3