diff options
author | Vajrasky Kok <sky.kok@speaklikeaking.com> | 2014-02-23 12:17:44 +0800 |
---|---|---|
committer | Vajrasky Kok <sky.kok@speaklikeaking.com> | 2014-02-23 12:17:44 +0800 |
commit | 5ea67a29c66fb872202cac2bb734241cec34e0a1 (patch) | |
tree | ec9890f5a6ef4bb03263d4056d83fb6949b1784e /activerecord | |
parent | e3d81945826083756de383612c3afbbdda8e1392 (diff) | |
download | rails-5ea67a29c66fb872202cac2bb734241cec34e0a1.tar.gz rails-5ea67a29c66fb872202cac2bb734241cec34e0a1.tar.bz2 rails-5ea67a29c66fb872202cac2bb734241cec34e0a1.zip |
Fixed typo in comment about MAX_ID.
Diffstat (limited to 'activerecord')
-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 297792aeec..59467636d7 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -549,7 +549,7 @@ module ActiveRecord end # Returns a consistent, platform-independent identifier for +label+. - # Identifiers are positive integers less than 2^32. + # Identifiers are positive integers less than 2^30. def self.identify(label) Zlib.crc32(label.to_s) % MAX_ID end |