From be55a275decc0b75ce79fcd39e843695e6ce5acf Mon Sep 17 00:00:00 2001 From: Dunrong Huang Date: Wed, 23 Dec 2015 15:35:12 +0800 Subject: [PATCH] doc: s/Bucket/BucketName from amazon s3 documentaion, the name shoule be BucketName rather than Bucket. Signed-off-by: Dunrong Huang --- doc/radosgw/s3/csharp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/radosgw/s3/csharp.rst b/doc/radosgw/s3/csharp.rst index 41ceac3f65da..993322f66c10 100644 --- a/doc/radosgw/s3/csharp.rst +++ b/doc/radosgw/s3/csharp.rst @@ -112,7 +112,7 @@ This creates a file ``hello.txt`` with the string ``"Hello World!"`` .. code-block:: csharp PutObjectRequest request = new PutObjectRequest(); - request.Bucket = "my-new-bucket"; + request.BucketName = "my-new-bucket"; request.Key = "hello.txt"; request.ContentType = "text/plain"; request.ContentBody = "Hello World!"; -- 2.47.3