diff options
author | schneems <richard.schneeman@gmail.com> | 2014-06-02 10:16:23 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2014-06-02 10:16:23 -0500 |
commit | 319a8ac214abd1e1ca1590555898af9a6ac82498 (patch) | |
tree | 1bd26408cda659561835f09192150623a1758aaf /activerecord/lib | |
parent | 4ae90a7dd8f9857f5d8c90c0135dd873f90e6957 (diff) | |
download | rails-319a8ac214abd1e1ca1590555898af9a6ac82498.tar.gz rails-319a8ac214abd1e1ca1590555898af9a6ac82498.tar.bz2 rails-319a8ac214abd1e1ca1590555898af9a6ac82498.zip |
[ci skip] fix "note" syntax
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index d40bea5ea7..9c9fbd591f 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -33,7 +33,7 @@ module ActiveRecord # is followed by an indented list of key/value pairs in the "key: value" format. Records are # separated by a blank line for your viewing pleasure. # - # Note that fixtures are unordered. If you want ordered fixtures, use the omap YAML type. + # Note: Fixtures are unordered. If you want ordered fixtures, use the omap YAML type. # See http://yaml.org/type/omap.html # for the specification. You will need ordered fixtures when you have foreign key constraints # on keys in the same table. This is commonly needed for tree structures. Example: |