diff options
author | Zachary Scott <zachary@zacharyscott.net> | 2014-02-09 09:39:22 +0200 |
---|---|---|
committer | Zachary Scott <zachary@zacharyscott.net> | 2014-02-09 12:29:00 +0100 |
commit | 605c81b9de24535993046d9a50408ad98feee9c0 (patch) | |
tree | 28d0e63bd0c34ac332e223193d76d341f127abba /guides | |
parent | 4e4a92e78a29d2508702336a440cb0d14cbf1f39 (diff) | |
download | rails-605c81b9de24535993046d9a50408ad98feee9c0.tar.gz rails-605c81b9de24535993046d9a50408ad98feee9c0.tar.bz2 rails-605c81b9de24535993046d9a50408ad98feee9c0.zip |
Use full-length version of multiple from c7abc51
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_validations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index b0bd16791d..990c820868 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -577,7 +577,7 @@ so it may happen that two different database connections create two records with the same value for a column that you intend to be unique. To avoid that, you must create a unique index on both columns in your database. See [the MySQL manual](http://dev.mysql.com/doc/refman/5.6/en/multiple-column-indexes.html) -for more details about multi column indexes. +for more details about multiple column indexes. ```ruby class Account < ActiveRecord::Base |