public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/JackDanger/rails.git
Fixed documentation that made rdoc bark

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8322 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Thu Dec 06 10:38:14 -0800 2007
commit  b5c42c09d67b54e03f3c0ab88c83d69cf075eb21
tree    87740193470a0a483162f6551fcfbe9b996c867e
parent  729741a3fa91fb92a60795a3c9c3e3928723023c
...
715
716
717
718
 
719
720
721
...
734
735
736
737
 
738
739
740
...
715
716
717
 
718
719
720
721
...
734
735
736
 
737
738
739
740
0
@@ -715,7 +715,7 @@ module ActionView
0
           #
0
           # # Insert the rendered 'navigation' partial just before the DOM
0
           # # element with ID 'content'.
0
- # # Generates: new Insertion.Before("content", "<!-- Contents of 'navigation' partial -->");
0
+ # # Generates: new Insertion.Before("content", "-- Contents of 'navigation' partial --");
0
           # insert_html :before, 'content', :partial => 'navigation'
0
           #
0
           # # Add a list item to the bottom of the <ul> with ID 'list'.
0
@@ -734,7 +734,7 @@ module ActionView
0
           #
0
           # # Replace the HTML of the DOM element having ID 'person-45' with the
0
           # # 'person' partial for the appropriate object.
0
- # # Generates: Element.update("person-45", "<!-- Contents of 'person' partial -->");
0
+ # # Generates: Element.update("person-45", "-- Contents of 'person' partial --");
0
           # replace_html 'person-45', :partial => 'person', :object => @person
0
           #
0
           def replace_html(id, *options_for_render)

Comments

    No one has commented yet.