Skip to content

Commit

Permalink
Fixed 'metada' typo in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nbibler committed Jun 9, 2008
1 parent 428fcfe commit 1a052c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/aws/s3/object.rb
Expand Up @@ -107,10 +107,10 @@ module S3
# pp song.metadata
# {"x-amz-meta-released" => "2005",
# "x-amz-meta-album" => "A River Ain't Too Much To Love"}
# song.metada[:released]
# song.metadata[:released]
# # => "2005"
# song.metada[:released] = 2006
# pp song.metada
# song.metadata[:released] = 2006
# pp song.metadata
# {"x-amz-meta-released" => 2006,
# "x-amz-meta-album" => "A River Ain't Too Much To Love"}
class S3Object < Base
Expand Down

0 comments on commit 1a052c6

Please sign in to comment.