diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-26 19:14:58 -0800 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-26 19:14:58 -0800 |
commit | 37b1de18841adac1fb4940069389da628a835649 (patch) | |
tree | 975ec805fcf9ab496ab4964c9ae69df9cc5c3118 | |
parent | 3b48938948ba33da6f5d50e28f78658322202322 (diff) | |
parent | 1154879e2f88f2c1e1523f413161c9fd175ff398 (diff) | |
download | rails-37b1de18841adac1fb4940069389da628a835649.tar.gz rails-37b1de18841adac1fb4940069389da628a835649.tar.bz2 rails-37b1de18841adac1fb4940069389da628a835649.zip |
Merge pull request #17794 from zavan/fix-typo
Fix typo in Rails 4.2 release notes
-rw-r--r-- | guides/source/4_2_release_notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index 822a28bcd6..330db52e34 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -45,7 +45,7 @@ method that sends the email asynchronously via a job in a queue, so it doesn't block the controller or model. The new [Global ID](https://github.com/rails/globalid) library makes it easy -to pass Active Record objects to jobs. The library stores a glogal URI that +to pass Active Record objects to jobs. The library stores a global URI that uniquely represents the model without serializing its state. This means you no longer have to manually pack and unpack your Active Records by passing ids. Just give the job the Active Record object, its global ID will be stored, and |