Skip to content

Commit

Permalink
Merge pull request #850 from rin/patch-1
Browse files Browse the repository at this point in the history
fix typos in documentation
  • Loading branch information
trevorrowe committed Jun 22, 2015
2 parents 94e6832 + 5f12830 commit 0e543d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws-sdk-core/lib/aws-sdk-core/client_stubs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def initialize(*args)
#
# # stub data in the constructor
# client = Aws::S3::Client.new(stub_responses: {
# list_buckets: { bukets: [{name: 'my-bucket' }] },
# list_buckets: { buckets: [{name: 'my-bucket' }] },
# get_object: { body: 'data' },
# })
#
Expand All @@ -46,7 +46,7 @@ def initialize(*args)
# You can also specify the stub data using {#stub_responses}
#
# client = Aws::S3::Client.new(stub_responses: true)
# client.stub_resposnes(:list_buckets, {
# client.stub_responses(:list_buckets, {
# buckets: [{ name: 'my-bucket' }]
# })
#
Expand Down

0 comments on commit 0e543d4

Please sign in to comment.