diff options
author | Sunny Ripert <sunny@sunfox.org> | 2013-05-28 14:36:18 +0200 |
---|---|---|
committer | Sunny Ripert <sunny@sunfox.org> | 2013-05-28 14:38:02 +0200 |
commit | 70b302b189dbe9f90e3b081fa540c909a43ba8d0 (patch) | |
tree | b76527e12288ea06fc87695ebd9a7e8d45aff342 /guides/source/migrations.md | |
parent | 606c09b8dbaa65ab124baaa0ee62a885a25a2222 (diff) | |
download | rails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.tar.gz rails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.tar.bz2 rails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.zip |
Remove double spaces in code examples
Diffstat (limited to 'guides/source/migrations.md')
-rw-r--r-- | guides/source/migrations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md index 1ad8db12eb..ae0726c559 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -877,7 +877,7 @@ end # app/models/product.rb class Product < ActiveRecord::Base - validates :flag, inclusion: { in: [true, false] } + validates :flag, inclusion: { in: [true, false] } validates :fuzz, presence: true end ``` |