From 159984e956067fcb7d3c4bd54ab2b8daf10a9c43 Mon Sep 17 00:00:00 2001 From: Scott Jacobsen Date: Fri, 2 Dec 2011 11:49:56 -0700 Subject: [PATCH] Fix typos --- lib/aws/s3/object.rb | 4 ++-- lib/aws/s3/service.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/aws/s3/object.rb b/lib/aws/s3/object.rb index 0fa03f5..88a481b 100644 --- a/lib/aws/s3/object.rb +++ b/lib/aws/s3/object.rb @@ -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 about method: + # A bevy of information about an object can be had using the about method: # # pp song.about # {"last-modified" => "Sat, 28 Oct 2006 21:29:26 GMT", diff --git a/lib/aws/s3/service.rb b/lib/aws/s3/service.rb index e68a80a..23939e5 100644 --- a/lib/aws/s3/service.rb +++ b/lib/aws/s3/service.rb @@ -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 true. Other times they raise an exception that you may want to rescue. Despite all these + # Other times they return just true. 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 \ No newline at end of file +end