diff options
author | Xavier Noria <fxn@hashref.com> | 2008-05-04 23:35:11 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-05-04 23:35:11 +0200 |
commit | 225212097e9fc25aac72afe66476bf10442fa62b (patch) | |
tree | 9a0d8712e8c7afc41f39bf4801b4821cfe3c3ce2 | |
parent | 8432415d592ef0c88112ec685d12dadf48592470 (diff) | |
download | rails-225212097e9fc25aac72afe66476bf10442fa62b.tar.gz rails-225212097e9fc25aac72afe66476bf10442fa62b.tar.bz2 rails-225212097e9fc25aac72afe66476bf10442fa62b.zip |
mysql adapter port is an integer
-rwxr-xr-x | activerecord/lib/active_record/connection_adapters/mysql_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb index b62182bf00..f00a2c8950 100755 --- a/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb @@ -147,7 +147,7 @@ module ActiveRecord # Options: # # * <tt>:host</tt> - Defaults to "localhost". - # * <tt>:port</tt> - Defaults to "3306". + # * <tt>:port</tt> - Defaults to 3306. # * <tt>:socket</tt> - Defaults to "/tmp/mysql.sock". # * <tt>:username</tt> - Defaults to "root" # * <tt>:password</tt> - Defaults to nothing. |