public
Fork of NZKoz/koz-rails
Description: Koz's rails git-svn clone
Homepage: http://www.rubyonrails.org
Clone URL: git://github.com/eventualbuddha/koz-rails.git
Search Repo:
Fix various documentation typos throughout ActionPack. Closes #8111.  
[Henrik N]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6679 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
marcel (author)
Sat May 05 21:46:11 -0700 2007
commit  dad37b03d7ffdc2a923bdb1e75ed216d4ea6904c
tree    14052fbd1f2141b8ffe034910b46aa0d2e0f29f8
parent  b064ccaea85784303566334c81f2d61cb7cd5840
...
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 *SVN*
0
 
0
+* Fix various documentation typos throughout ActionPack. [Henrik N]
0
+
0
 * Enhance documentation and add examples for url_for. [jeremymcanally]
0
 
0
 * Fix documentation typo in routes. [norbert, pam]
...
4
5
6
7
 
8
9
10
...
18
19
20
21
 
22
23
24
...
4
5
6
 
7
8
9
10
...
18
19
20
 
21
22
23
24
0
@@ -4,7 +4,7 @@ require 'ftools'
0
 
0
 include Config
0
 
0
-# this was adapted from rdoc's install.rb by ways of Log4r
0
+# this was adapted from rdoc's install.rb by way of Log4r
0
 
0
 $sitedir = CONFIG["sitelibdir"]
0
 unless $sitedir
0
@@ -18,7 +18,7 @@ unless $sitedir
0
   end
0
 end
0
 
0
-# the acual gruntwork
0
+# the actual gruntwork
0
 Dir.chdir("lib")
0
 
0
 Find.find("action_controller", "action_controller.rb", "action_view", "action_view.rb") { |f|
...
82
83
84
85
 
86
87
88
...
82
83
84
 
85
86
87
88
0
@@ -82,7 +82,7 @@ module ActionView #:nodoc:
0
   # Here are some basic examples:
0
   #
0
   # xml.em("emphasized") # => <em>emphasized</em>
0
- # xml.em { xml.b("emp & bold") } # => <em><b>emph &amp; bold</b></em>
0
+ # xml.em { xml.b("emph & bold") } # => <em><b>emph &amp; bold</b></em>
0
   # xml.a("A Link", "href"=>"http://onestepback.org") # => <a href="http://onestepback.org">A Link</a>
0
   # xml.target("name"=>"compile", "option"=>"fast") # => <target option="fast" name="compile"\>
0
   # # NOTE: order of attributes is not specified.
...
1
2
3
4
...
40
41
42
43
 
44
45
46
...
 
1
2
3
...
39
40
41
 
42
43
44
45
0
@@ -1,4 +1,3 @@
0
-
0
 module ActionView
0
 
0
   # CompiledTemplates modules hold methods that have been compiled.
0
@@ -40,7 +39,7 @@ module ActionView
0
     # Compile the provided source code for the given argument names and with the given initial line number.
0
     # The identifier should be unique to this source.
0
     #
0
- # The file_name, if provided will appear in backtraces. If not provded, the file_name defaults
0
+ # The file_name, if provided will appear in backtraces. If not provided, the file_name defaults
0
     # to the identifier.
0
     #
0
     # This method will return the selector for the compiled version of this method.

Comments

    No one has commented yet.