Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6679

Show
Ignore:
Timestamp:
05/06/07 04:46:11 (1 year ago)
Author:
marcel
Message:

Fix various documentation typos throughout ActionPack. Closes #8111. [Henrik N]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r6674 r6679  
    11*SVN* 
     2 
     3* Fix various documentation typos throughout ActionPack. [Henrik N] 
    24 
    35* Enhance documentation and add examples for url_for. [jeremymcanally] 
  • trunk/actionpack/install.rb

    r1053 r6679  
    55include Config 
    66 
    7 # this was adapted from rdoc's install.rb by ways of Log4r 
     7# this was adapted from rdoc's install.rb by way of Log4r 
    88 
    99$sitedir = CONFIG["sitelibdir"] 
     
    1919end 
    2020 
    21 # the acual gruntwork 
     21# the actual gruntwork 
    2222Dir.chdir("lib") 
    2323 
  • trunk/actionpack/lib/action_view/base.rb

    r6545 r6679  
    8383  # 
    8484  #   xml.em("emphasized")                              # => <em>emphasized</em> 
    85   #   xml.em { xml.b("emp & bold") }                    # => <em><b>emph &amp; bold</b></em> 
     85  #   xml.em { xml.b("emph & bold") }                    # => <em><b>emph &amp; bold</b></em> 
    8686  #   xml.a("A Link", "href"=>"http://onestepback.org") # => <a href="http://onestepback.org">A Link</a> 
    8787  #   xml.target("name"=>"compile", "option"=>"fast")   # => <target option="fast" name="compile"\> 
  • trunk/actionpack/lib/action_view/compiled_templates.rb

    r6470 r6679  
    1  
    21module ActionView 
    32 
     
    4140    # The identifier should be unique to this source. 
    4241    # 
    43     # The file_name, if provided will appear in backtraces. If not provded, the file_name defaults 
     42    # The file_name, if provided will appear in backtraces. If not provided, the file_name defaults 
    4443    # to the identifier. 
    4544    #