Merge pull request #48 from scottjacobsen/master

Fixed a few typos.
This commit is contained in:
Marcel Molina 2012-05-29 11:57:24 -07:00
Родитель 34db3c0bc7 159984e956
Коммит 9a32b451fa
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -75,10 +75,10 @@ module AWS
# song.content_type = 'application/pdf'
# song.store
#
# (Keep in mind that due to limitiations in S3's exposed API, the only way to change things like the content_type
# (Keep in mind that due to limitations in S3's exposed API, the only way to change things like the content_type
# is to PUT the object onto S3 again. In the case of large files, this will result in fully re-uploading the file.)
#
# A bevie of information about an object can be had using the <tt>about</tt> method:
# A bevy of information about an object can be had using the <tt>about</tt> method:
#
# pp song.about
# {"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT",

Просмотреть файл

@ -28,7 +28,7 @@ module AWS
memoized :buckets
# Sometimes methods that make requests to the S3 servers return some object, like a Bucket or an S3Object.
# Othertimes they return just <tt>true</tt>. Other times they raise an exception that you may want to rescue. Despite all these
# Other times they return just <tt>true</tt>. Other times they raise an exception that you may want to rescue. Despite all these
# possible outcomes, every method that makes a request stores its response object for you in Service.response. You can always
# get to the last request's response via Service.response.
#
@ -48,4 +48,4 @@ module AWS
end
end
end
end
end