public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
Fixed spelling errors (closes #9706) [tarmo/rmm5t]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7666 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Fri Sep 28 07:18:47 -0700 2007
commit  e3b49c052b497827c9f058feaa066bbfe184f4da
tree    4224be14c405d38f7a8911f52360bdd0150673ce
parent  7cb1f93bcccb2fe476c85e4df71eea06db9a3a5b
...
18
19
20
21
 
22
23
24
...
18
19
20
 
21
22
23
24
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_mailer", "action_mailer.rb") { |f|
...
577
578
579
580
 
581
582
583
...
983
984
985
986
 
987
988
989
...
577
578
579
 
580
581
582
583
...
983
984
985
 
986
987
988
989
0
@@ -577,7 +577,7 @@ module ActionController #:nodoc:
0
       # value that appears in the slot for <tt>:first</tt> is not equal to default value for <tt>:first</tt> we stop using
0
       # defaults. On it's own, this rule can account for much of the typical Rails URL behavior.
0
       #  
0
- # Although a convienence, defaults can occasionaly get in your way. In some cases a default persists longer than desired.
0
+ # Although a convenience, defaults can occasionally get in your way. In some cases a default persists longer than desired.
0
       # The default may be cleared by adding <tt>:name => nil</tt> to <tt>url_for</tt>'s options.
0
       # This is often required when writing form helpers, since the defaults in play may vary greatly depending upon where the
0
       # helper is used from. The following line will redirect to PostController's default action, regardless of the page it is
0
@@ -983,7 +983,7 @@ module ActionController #:nodoc:
0
       #
0
       # When using <tt>redirect_to :back</tt>, if there is no referrer,
0
       # RedirectBackError will be raised. You may specify some fallback
0
- # behavior for this case by rescueing RedirectBackError.
0
+ # behavior for this case by rescuing RedirectBackError.
0
       def redirect_to(options = {}) #:doc:
0
         case options
0
           when %r{^\w+://.*}
...
291
292
293
294
 
295
296
297
...
291
292
293
 
294
295
296
297
0
@@ -291,7 +291,7 @@ module ActionController #:nodoc:
0
           end
0
           
0
           def extract_extension(file_path)
0
- # Don't want just what comes after the last '.' to accomodate multi part extensions
0
+ # Don't want just what comes after the last '.' to accommodate multi part extensions
0
             # such as tar.gz.
0
             file_path[/^[^.]+\.(.+)$/, 1]
0
           end
...
102
103
104
105
 
106
107
108
...
102
103
104
 
105
106
107
108
0
@@ -102,7 +102,7 @@ module ActionController #:nodoc:
0
       # end
0
       # end
0
       #
0
- # Finally, all the above styles can be mixed together, and the +helper+ method can be invokved with a mix of
0
+ # Finally, all the above styles can be mixed together, and the +helper+ method can be invoked with a mix of
0
       # +symbols+, +strings+, +modules+ and blocks.
0
       # helper(:three, BlindHelper) { def mice() 'mice' end }
0
       #
...
304
305
306
307
 
308
309
310
...
304
305
306
 
307
308
309
310
0
@@ -304,7 +304,7 @@ module ActionController
0
           end
0
         end
0
 
0
- # Get a temporarly URL writer object
0
+ # Get a temporary URL writer object
0
         def generic_url_rewriter
0
           cgi = MockCGI.new('REQUEST_METHOD' => "GET",
0
                             'QUERY_STRING' => "",
...
794
795
796
797
 
798
799
800
...
794
795
796
 
797
798
799
800
0
@@ -794,7 +794,7 @@ module HTML
0
     # eventually, and array of substitution values.
0
     #
0
     # This method is called from four places, so it helps to put it here
0
- # for resue. The only logic deals with the need to detect comma
0
+ # for reuse. The only logic deals with the need to detect comma
0
     # separators (alternate) and apply them to the selector group of the
0
     # top selector.
0
     def next_selector(statement, values)
...
119
120
121
122
 
123
124
125
...
119
120
121
 
122
123
124
125
0
@@ -119,7 +119,7 @@ module ActionView
0
       #
0
       # The deprecated way of accessing a content_for block is to use an instance variable
0
       # named <tt>@content_for_#{name_of_the_content_block}</tt>. So <tt><%= content_for :footer %></tt>
0
- # would be avaiable as <tt><%= @content_for_footer %></tt>. The preferred usage is now
0
+ # would be available as <tt><%= @content_for_footer %></tt>. The preferred usage is now
0
       # <tt><%= yield :footer %></tt>.
0
       def content_for(name, content = nil, &block)
0
         existing_content_for = instance_variable_get("@content_for_#{name}").to_s
...
140
141
142
143
 
144
145
146
...
140
141
142
 
143
144
145
146
0
@@ -140,7 +140,7 @@ module ActionView
0
           javascript << "\n" << IO.read(filename)
0
         end
0
         
0
- # load other librairies
0
+ # load other libraries
0
         (Dir.glob(File.join(JAVASCRIPT_PATH, '*')) - prototype_libs).each do |filename|
0
           javascript << "\n" << IO.read(filename)
0
         end
...
511
512
513
514
 
515
516
517
...
511
512
513
 
514
515
516
517
0
@@ -511,7 +511,7 @@ module ActionView
0
           # element's existing content.
0
           # <tt>:bottom</tt>:: HTML is inserted inside the element, after the
0
           # element's existing content.
0
- # <tt>:before</tt>:: HTML is inserted immediately preceeding the element.
0
+ # <tt>:before</tt>:: HTML is inserted immediately preceding the element.
0
           # <tt>:after</tt>:: HTML is inserted immediately following the element.
0
           #
0
           # +options_for_render+ may be either a string of HTML to insert, or a hash
...
30
31
32
33
 
34
35
36
...
30
31
32
 
33
34
35
36
0
@@ -30,7 +30,7 @@ module ActionView
0
       # variable in the generated JavaScript execution context. This can be
0
       # used for example with drop_receiving_element:
0
       #
0
- # <%= drop_receving_element (...), :loading => visual_effect(:fade) %>
0
+ # <%= drop_receiving_element (...), :loading => visual_effect(:fade) %>
0
       #
0
       # This would fade the element that was dropped on the drop receiving
0
       # element.
...
82
83
84
85
 
86
87
88
...
82
83
84
 
85
86
87
88
0
@@ -82,7 +82,7 @@ module ActionView
0
       end
0
 
0
       # Extracts an excerpt from +text+ that matches the first instance of +phrase+.
0
- # The +radius+ expands the excerpt on each side of the first occurance of +phrase+ by the number of characters
0
+ # The +radius+ expands the excerpt on each side of the first occurrence of +phrase+ by the number of characters
0
       # defined in +radius+ (which defaults to 100). If the excerpt radius overflows the beginning or end of the +text+,
0
       # then the +excerpt_string+ will be prepended/appended accordingly. If the +phrase+
0
       # isn't found, nil is returned.
...
53
54
55
56
 
57
58
59
...
53
54
55
 
56
57
58
59
0
@@ -53,7 +53,7 @@ class ActiveRecordStoreTest < ActiveRecordTestCase
0
     @new_session['foo'] = 'bar'
0
   end
0
 
0
-# this test only applies for eager sesssion saving
0
+# this test only applies for eager session saving
0
 # def test_another_instance
0
 # @another = CGI::Session.new(@cgi, 'session_id' => @new_session.session_id, 'database_manager' => CGI::Session::ActiveRecordStore)
0
 # assert_equal @new_session.session_id, @another.session_id
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ require 'fileutils'
0
 require File.dirname(__FILE__) + '/../abstract_unit'
0
 
0
 CACHE_DIR = 'test_cache'
0
-# Don't change '/../temp/' cavalierly or you might hoze something you don't want hozed
0
+# Don't change '/../temp/' cavalierly or you might hose something you don't want hosed
0
 FILE_STORE_PATH = File.join(File.dirname(__FILE__), '/../temp/', CACHE_DIR)
0
 ActionController::Base.page_cache_directory = FILE_STORE_PATH
0
 ActionController::Base.fragment_cache_store = :file_store, FILE_STORE_PATH
...
127
128
129
130
 
131
132
133
...
127
128
129
 
130
131
132
133
0
@@ -127,7 +127,7 @@ class ComponentsTest < Test::Unit::TestCase
0
     test_internal_calling
0
   end
0
 
0
- def test_component_as_string_redirect_renders_redirecte_action
0
+ def test_component_as_string_redirect_renders_redirected_action
0
     get :calling_redirected_as_string
0
 
0
     assert_equal "Lady of the House, speaking", @response.body
...
6
7
8
9
 
10
11
12
13
 
14
15
16
...
55
56
57
58
 
59
60
61
62
63
 
64
65
66
...
6
7
8
 
9
10
11
12
 
13
14
15
16
...
55
56
57
 
58
59
60
61
62
 
63
64
65
66
0
@@ -6,11 +6,11 @@ class CookieTest < Test::Unit::TestCase
0
       cookies["user_name"] = "david"
0
     end
0
 
0
- def authenticate_for_fourten_days
0
+ def authenticate_for_fourteen_days
0
       cookies["user_name"] = { "value" => "david", "expires" => Time.local(2005, 10, 10) }
0
     end
0
 
0
- def authenticate_for_fourten_days_with_symbols
0
+ def authenticate_for_fourteen_days_with_symbols
0
       cookies[:user_name] = { :value => "david", :expires => Time.local(2005, 10, 10) }
0
     end
0
 
0
@@ -55,12 +55,12 @@ class CookieTest < Test::Unit::TestCase
0
   end
0
 
0
   def test_setting_cookie_for_fourteen_days
0
- get :authenticate_for_fourten_days
0
+ get :authenticate_for_fourteen_days
0
     assert_equal [ CGI::Cookie::new("name" => "user_name", "value" => "david", "expires" => Time.local(2005, 10, 10)) ], @response.headers["cookie"]
0
   end
0
 
0
   def test_setting_cookie_for_fourteen_days_with_symbols
0
- get :authenticate_for_fourten_days
0
+ get :authenticate_for_fourteen_days
0
     assert_equal [ CGI::Cookie::new("name" => "user_name", "value" => "david", "expires" => Time.local(2005, 10, 10)) ], @response.headers["cookie"]
0
   end
0
 
...
766
767
768
769
 
770
771
772
...
766
767
768
 
769
770
771
772
0
@@ -766,7 +766,7 @@ class DynamicSegmentTest < Test::Unit::TestCase
0
     
0
     eval(segment.expiry_statement)
0
   rescue RuntimeError
0
- flunk "Expiry check should not have occured!"
0
+ flunk "Expiry check should not have occurred!"
0
   end
0
   
0
   def test_expiry_should_occur_according_to_expire_on
...
177
178
179
180
 
181
182
183
...
177
178
179
 
180
181
182
183
0
@@ -177,7 +177,7 @@ class SelectorTest < Test::Unit::TestCase
0
     assert_equal 2, @matches.size
0
     assert_equal "foo", @matches[0].attributes["href"]
0
     assert_equal "baz", @matches[1].attributes["href"]
0
- # And now for the three selector challange.
0
+ # And now for the three selector challenge.
0
     parse(%Q{<h1 id="1"><a href="foo"></a></h1><h2 id="2"><a href="bar"></a></h2><h3 id="2"><a href="baz"></a></h3>})
0
     select("h1 a, h2 a, h3 a")
0
     assert_equal 3, @matches.size
...
225
226
227
228
 
229
230
 
231
232
233
...
225
226
227
 
228
229
 
230
231
232
233
0
@@ -225,9 +225,9 @@ XML
0
   def test_assert_tag_before
0
     process :test_html_output
0
 
0
- # there is a tag preceeding a tag with id 'bar'
0
+ # there is a tag preceding a tag with id 'bar'
0
     assert_tag :before => { :attributes => { :id => "bar" } }
0
- # there is no tag preceeding a 'form' tag
0
+ # there is no tag preceding a 'form' tag
0
     assert_no_tag :before => { :tag => "form" }
0
   end
0
 
...
83
84
85
86
87
88
89
90
91
92
93
 
 
 
 
 
 
 
 
94
95
96
...
83
84
85
 
 
 
 
 
 
 
 
86
87
88
89
90
91
92
93
94
95
96
0
@@ -83,14 +83,14 @@ class PrototypeHelperTest < Test::Unit::TestCase
0
   def test_link_to_remote
0
     assert_dom_equal %(<a class=\"fine\" href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true}); return false;\">Remote outauthor</a>),
0
       link_to_remote("Remote outauthor", { :url => { :action => "whatnot" }}, { :class => "fine" })
0
- assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onComplete:function(request){alert(request.reponseText)}}); return false;\">Remote outauthor</a>),
0
- link_to_remote("Remote outauthor", :complete => "alert(request.reponseText)", :url => { :action => "whatnot" })
0
- assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onSuccess:function(request){alert(request.reponseText)}}); return false;\">Remote outauthor</a>),
0
- link_to_remote("Remote outauthor", :success => "alert(request.reponseText)", :url => { :action => "whatnot" })
0
- assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onFailure:function(request){alert(request.reponseText)}}); return false;\">Remote outauthor</a>),
0
- link_to_remote("Remote outauthor", :failure => "alert(request.reponseText)", :url => { :action => "whatnot" })
0
- assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot?a=10&amp;b=20', {asynchronous:true, evalScripts:true, onFailure:function(request){alert(request.reponseText)}}); return false;\">Remote outauthor</a>),
0
- link_to_remote("Remote outauthor", :failure => "alert(request.reponseText)", :url => { :action => "whatnot", :a => '10', :b => '20' })
0
+ assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onComplete:function(request){alert(request.responseText)}}); return false;\">Remote outauthor</a>),
0
+ link_to_remote("Remote outauthor", :complete => "alert(request.responseText)", :url => { :action => "whatnot" })
0
+ assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onSuccess:function(request){alert(request.responseText)}}); return false;\">Remote outauthor</a>),
0
+ link_to_remote("Remote outauthor", :success => "alert(request.responseText)", :url => { :action => "whatnot" })
0
+ assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onFailure:function(request){alert(request.responseText)}}); return false;\">Remote outauthor</a>),
0
+ link_to_remote("Remote outauthor", :failure => "alert(request.responseText)", :url => { :action => "whatnot" })
0
+ assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot?a=10&amp;b=20', {asynchronous:true, evalScripts:true, onFailure:function(request){alert(request.responseText)}}); return false;\">Remote outauthor</a>),
0
+ link_to_remote("Remote outauthor", :failure => "alert(request.responseText)", :url => { :action => "whatnot", :a => '10', :b => '20' })
0
   end
0
   
0
   def test_link_to_remote_html_options
...
18
19
20
21
 
22
23
24
...
18
19
20
 
21
22
23
24
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_web_service", "action_web_service.rb") { |f|
...
968
969
970
971
 
972
973
974
...
968
969
970
 
971
972
973
974
0
@@ -968,7 +968,7 @@ class ToplevelInstallerMulti < ToplevelInstaller
0
 
0
   def print_usage(f)
0
     super
0
- f.puts 'Inluded packages:'
0
+ f.puts 'Included packages:'
0
     f.puts ' ' + @packages.sort.join(' ')
0
     f.puts
0
   end
...
18
19
20
21
 
22
23
24
...
18
19
20
 
21
22
23
24
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("active_record", "active_record.rb") { |f|
...
716
717
718
719
 
720
721
722
...
857
858
859
860
 
861
862
863
...
716
717
718
 
719
720
721
722
...
857
858
859
 
860
861
862
863
0
@@ -716,7 +716,7 @@ module ActiveRecord
0
             #
0
       # Option examples:
0
       # has_one :credit_card, :dependent => :destroy # destroys the associated credit card
0
- # has_one :credit_card, :dependent => :nullify # updates the associated records foriegn key value to null rather than destroying it
0
+ # has_one :credit_card, :dependent => :nullify # updates the associated records foreign key value to null rather than destroying it
0
       # has_one :last_comment, :class_name => "Comment", :order => "posted_on"
0
       # has_one :project_manager, :class_name => "Person", :conditions => "role = 'project_manager'"
0
       # has_one :attachment, :as => :attachable
0
@@ -857,7 +857,7 @@ module ActiveRecord
0
       #
0
       # Deprecated: Any additional fields added to the join table will be placed as attributes when pulling records out through
0
       # +has_and_belongs_to_many+ associations. Records returned from join tables with additional attributes will be marked as
0
- # +ReadOnly+ (because we can't save changes to the additional attrbutes). It's strongly recommended that you upgrade any
0
+ # +ReadOnly+ (because we can't save changes to the additional attributes). It's strongly recommended that you upgrade any
0
       # associations with attributes to a real join model (see introduction).
0
       #
0
       # Adds the following methods for retrieval and query:
...
65
66
67
68
 
69
70
71
...
154
155
156
157
 
158
159
160
 
161
162
163
...
65
66
67
 
68
69
70
71
...
154
155
156
 
157
158
159
 
160
161
162
163
0
@@ -65,7 +65,7 @@ module ActiveRecord
0
 
0
           options[:conditions] = conditions
0
           options[:joins] = @join_sql
0
- options[:readonly] = finding_with_ambigious_select?(options[:select])
0
+ options[:readonly] = finding_with_ambiguous_select?(options[:select])
0
 
0
           if options[:order] && @reflection.options[:order]
0
             options[:order] = "#{options[:order]}, #{@reflection.options[:order]}"
0
@@ -154,10 +154,10 @@ module ActiveRecord
0
           { :find => { :conditions => @finder_sql, :joins => @join_sql, :readonly => false } }
0
         end
0
 
0
- # Join tables with additional columns on top of the two foreign keys must be considered ambigious unless a select
0
+ # Join tables with additional columns on top of the two foreign keys must be considered ambiguous unless a select
0
         # clause has been explicitly defined. Otherwise you can get broken records back, if, for example, the join column also has
0
         # an id column. This will then overwrite the id column of the records coming back.
0
- def finding_with_ambigious_select?(select_clause)
0
+ def finding_with_ambiguous_select?(select_clause)
0
           !select_clause && @owner.connection.columns(@reflection.options[:join_table], "Join Table Columns").size != 2
0
         end
0
     end
...
150
151
152
153
 
154
155
156
...
150
151
152
 
153
154
155
156
0
@@ -150,7 +150,7 @@ module ActiveRecord #:nodoc:
0
   # end
0
   # end
0
   #
0
- # You can alternatively use self[:attribute]=(value) and self[:attribute] instead of write_attribute(:attribute, vaule) and
0
+ # You can alternatively use self[:attribute]=(value) and self[:attribute] instead of write_attribute(:attribute, value) and
0
   # read_attribute(:attribute) as a shorter form.
0
   #
0
   # == Accessing attributes before they have been typecasted
...
133
134
135
136
 
137
138
139
...
133
134
135
 
136
137
138
139
0
@@ -133,7 +133,7 @@ module ActiveRecord
0
         # Do nothing by default. Implement for PostgreSQL, Oracle, ...
0
       end
0
 
0
- # Inserts the given fixture into the table. Overriden in adapters that require
0
+ # Inserts the given fixture into the table. Overridden in adapters that require
0
       # something beyond a simple insert (eg. Oracle).
0
       def insert_fixture(fixture, table_name)
0
         execute "INSERT INTO #{table_name} (#{fixture.key_list}) VALUES (#{fixture.value_list})", 'Fixture Insert'
...
142
143
144
145
 
146
147
148
...
237
238
239
240
 
241
242
243
...
255
256
257
258
 
259
260
261
...
142
143
144
 
145
146
147
148
...
237
238
239
 
240
241
242
243
...
255
256
257
 
258
259
260
261
0
@@ -142,7 +142,7 @@ module ActiveRecord
0
 
0
       # Sets a new default value for a column. If you want to set the default
0
       # value to +NULL+, you are out of luck. You need to
0
- # DatabaseStatements#execute the apppropriate SQL statement yourself.
0
+ # DatabaseStatements#execute the appropriate SQL statement yourself.
0
       # ===== Examples
0
       # change_column_default(:suppliers, :qualification, 'new')
0
       # change_column_default(:accounts, :authorized, 1)
0
@@ -237,7 +237,7 @@ module ActiveRecord
0
           execute "CREATE TABLE #{ActiveRecord::Migrator.schema_info_table_name} (version #{type_to_sql(:integer)})"
0
           execute "INSERT INTO #{ActiveRecord::Migrator.schema_info_table_name} (version) VALUES(0)"
0
         rescue ActiveRecord::StatementInvalid
0
- # Schema has been intialized
0
+ # Schema has been initialized
0
         end
0
       end
0
 
0
@@ -255,7 +255,7 @@ module ActiveRecord
0
       def type_to_sql(type, limit = nil, precision = nil, scale = nil) #:nodoc:
0
         if native = native_database_types[type]
0
           column_type_sql = native.is_a?(Hash) ? native[:name] : native
0
- if type == :decimal # ignore limit, use precison and scale
0
+ if type == :decimal # ignore limit, use precision and scale
0
             precision ||= native[:precision]
0
             scale ||= native[:scale]
0
             if precision
...
129
130
131
132
 
133
134
135
...
129
130
131
 
132
133
134
135
0
@@ -129,7 +129,7 @@ module ActiveRecord
0
           end
0
         rescue Exception => e
0
           # Log message and raise exception.
0
- # Set last_verfication to 0, so that connection gets verified
0
+ # Set last_verification to 0, so that connection gets verified
0
           # upon reentering the request loop
0
           @last_verification = 0
0
           message = "#{e.class.name}: #{e.message}: #{sql}"
...
260
261
262
263
 
264
265
266
...
260
261
262
 
263
264
265
266
0
@@ -260,7 +260,7 @@ begin
0
         end
0
 
0
 
0
- # Inserts the given fixture into the table. Overriden to properly handle lobs.
0
+ # Inserts the given fixture into the table. Overridden to properly handle lobs.
0
         def insert_fixture(fixture, table_name)
0
           super
0
 
...
70
71
72
73
 
74
75
76
...
784
785
786
787
 
788
789
790
...
70
71
72
 
73
74
75
76
...
784
785
786
 
787
788
789
790
0
@@ -70,7 +70,7 @@ module ActiveRecord
0
   
0
         # Unescapes bytea output from a database to the binary string it represents.
0
         def self.binary_to_string(value)
0
- # In each case, check if the value actually is escaped PostgresSQL bytea output
0
+ # In each case, check if the value actually is escaped PostgreSQL bytea output
0
           # or an unescaped Active Record attribute that was just written.
0
           if PGconn.respond_to?(:unescape_bytea)
0
             self.class.module_eval do
0
@@ -784,7 +784,7 @@ module ActiveRecord
0
               row.each_index do |cell_index|
0
                 # If this is a money type column and there are any currency symbols,
0
                 # then strip them off. Indeed it would be prettier to do this in
0
- # PostgresSQLColumn.string_to_decimal but would break form input
0
+ # PostgreSQLColumn.string_to_decimal but would break form input
0
                 # fields that call value_before_type_cast.
0
                 if res.type(cell_index) == MONEY_COLUMN_TYPE_OID
0
                   # Because money output is formatted according to the locale, there are two
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-# sybase_adaptor.rb
0
+# sybase_adapter.rb