aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
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 /activemodel
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 'activemodel')
-rw-r--r--activemodel/test/cases/attribute_set_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/attribute_set_test.rb b/activemodel/test/cases/attribute_set_test.rb
index b868dba743..62feb9074e 100644
--- a/activemodel/test/cases/attribute_set_test.rb
+++ b/activemodel/test/cases/attribute_set_test.rb
@@ -217,7 +217,7 @@ module ActiveModel
assert_equal({ foo: "1" }, attributes.to_hash)
end
- test "marshaling dump/load legacy materialized attribute hash" do
+ test "marshalling dump/load legacy materialized attribute hash" do
builder = AttributeSet::Builder.new(foo: Type::String.new)
attributes = builder.build_from_database(foo: "1")