aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-10-02 18:54:28 +0900
committerGitHub <noreply@github.com>2018-10-02 18:54:28 +0900
commit96e69b5a33f44e5339345ef3c4871aba51a1e938 (patch)
treea0662fdf46c00056fb2ea6ec804611f2587e0be0 /activemodel
parent8171a1b9db029f4c6d45e2df3037d53a4864acb1 (diff)
parent3c4b729f48c0320499f16a2e6f50a3d27bde1114 (diff)
downloadrails-96e69b5a33f44e5339345ef3c4871aba51a1e938.tar.gz
rails-96e69b5a33f44e5339345ef3c4871aba51a1e938.tar.bz2
rails-96e69b5a33f44e5339345ef3c4871aba51a1e938.zip
Merge pull request #34049 from sharang-d/marshalling-text-changes
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")