diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-21 11:12:43 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-21 11:12:43 +0000 |
commit | eb671f238654301a51e8c44ab2a6a34afcc0b5aa (patch) | |
tree | d1e761833f93a3fa61673f9a8942c040b830d3ac /lib | |
parent | c25309de42fecd415f01e78e954de5f748cf70aa (diff) | |
download | ruby-eb671f238654301a51e8c44ab2a6a34afcc0b5aa.tar.gz ruby-eb671f238654301a51e8c44ab2a6a34afcc0b5aa.tar.xz ruby-eb671f238654301a51e8c44ab2a6a34afcc0b5aa.zip |
fixed a typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/date.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/date.rb b/lib/date.rb index 63bb9cae1..05b11d317 100644 --- a/lib/date.rb +++ b/lib/date.rb @@ -1481,7 +1481,7 @@ class Date # Dump to Marshal format. def marshal_dump() [@ajd, @of, @sg] end - # Load from Marshall format. + # Load from Marshal format. def marshal_load(a) @ajd, @of, @sg, = a @__ca__ = {} |