doc: s/ListBucketResponse/ListBucketsResponse

From following documentation:
  - http://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/S3/MS3ListBucketsResponsector_.html
  - http://docs.aws.amazon.com/sdkfornet/latest/apidocs/items/TS3ListBucketsResponse_NET4_5.html
the correct class name is ListBucketsResponse.

Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
This commit is contained in:
Dunrong Huang 2015-12-23 12:13:02 +08:00
parent fd6fca7f28
commit d46297e7d8

View File

@ -36,7 +36,7 @@ This also prints out the bucket name and creation date of each bucket.
.. code-block:: csharp
ListBucketResponse response = client.ListBuckets();
ListBucketsResponse response = client.ListBuckets();
foreach (S3Bucket b in response.Buckets)
{
Console.WriteLine("{0}\t{1}", b.BucketName, b.CreationDate);