diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-07 11:12:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-07 11:12:05 +0000 |
commit | d1856a00a3c614062049a43fb3e5e6a7b899c879 (patch) | |
tree | 9fb710395354095cadd48c0bc556e07d070a6c80 /activerecord/lib | |
parent | a544d7aa372a080b77940571a3a169496045670e (diff) | |
download | rails-d1856a00a3c614062049a43fb3e5e6a7b899c879.tar.gz rails-d1856a00a3c614062049a43fb3e5e6a7b899c879.tar.bz2 rails-d1856a00a3c614062049a43fb3e5e6a7b899c879.zip |
Documentation bugs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@59 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/fixtures.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 3911b51806..80ffe0d523 100755 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -36,7 +36,7 @@ require 'active_record/support/inflector' # # = CSV fixtures # -# Fixtures can also be kept in the in the Comma Separated Value format. Akin to YAML fixtures, CSV fixtures are stored +# Fixtures can also be kept in the Comma Separated Value format. Akin to YAML fixtures, CSV fixtures are stored # in a single file, but, instead end with the .csv file extension (Rails example: "<your-rails-app>/test/fixtures/web_sites.csv") # # The format of this tye of fixture file is much more compact than the others, but also a little harder to read by us @@ -134,7 +134,7 @@ require 'active_record/support/inflector' # name: guy_<%= 1 %> # <% end %> # -# This will create 1000 YAML very simple fixtures. +# This will create 1000 very simple YAML fixtures. # # Using ERb, you can also inject dynamic values into your fixtures with inserts like <%= Date.today.strftime("%Y-%m-%d") %>. # This is however a feature to be used with some caution. The point of fixtures are that they're stable units of predictable |