aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/4_2_release_notes.md
diff options
context:
space:
mode:
authorSharang Dashputre <sharang.d@gmail.com>2018-10-02 13:39:40 +0530
committerSharang Dashputre <sharang.d@gmail.com>2018-10-02 13:55:39 +0530
commit3c4b729f48c0320499f16a2e6f50a3d27bde1114 (patch)
treea0662fdf46c00056fb2ea6ec804611f2587e0be0 /guides/source/4_2_release_notes.md
parent8171a1b9db029f4c6d45e2df3037d53a4864acb1 (diff)
downloadrails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.tar.gz
rails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.tar.bz2
rails-3c4b729f48c0320499f16a2e6f50a3d27bde1114.zip
Fix spellings for 'unmarshall(ing/ed)' & 'marshall(ing/ed)'
Diffstat (limited to 'guides/source/4_2_release_notes.md')
-rw-r--r--guides/source/4_2_release_notes.md2
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 f7c40d19e9..51d06bd07d 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -44,7 +44,7 @@ to their respective adapters. Active Job comes pre-configured with an inline
runner that executes jobs right away.
Jobs often need to take Active Record objects as arguments. Active Job passes
-object references as URIs (uniform resource identifiers) instead of marshaling
+object references as URIs (uniform resource identifiers) instead of marshalling
the object itself. The new [Global ID](https://github.com/rails/globalid)
library builds URIs and looks up the objects they reference. Passing Active
Record objects as job arguments just works by using Global ID internally.