Skip to content

Commit

Permalink
Doc: Fix typo in example code (#239)
Browse files Browse the repository at this point in the history
change bucket.CreationDate.DateTime -> bucket.CreationDateDateTime
  • Loading branch information
Alexander Pavlov authored and kannappanr committed Sep 10, 2018
1 parent f64eeea commit 49b1780
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var getListBucketsTask = minio.ListBucketsAsync();
// Iterate over the list of buckets.
foreach (Bucket bucket in getListBucketsTask.Result.Buckets)
{
Console.Out.WriteLine(bucket.Name + " " + bucket.CreationDate.DateTime);
Console.Out.WriteLine(bucket.Name + " " + bucket.CreationDateDateTime);
}

```
Expand Down
2 changes: 1 addition & 1 deletion README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var getListBucketsTask = minio.ListBucketsAsync();
// Iterate over the list of buckets.
foreach (Bucket bucket in getListBucketsTask.Result.Buckets)
{
Console.Out.WriteLine(bucket.Name + " " + bucket.CreationDate.DateTime);
Console.Out.WriteLine(bucket.Name + " " + bucket.CreationDateDateTime);
}

```
Expand Down

0 comments on commit 49b1780

Please sign in to comment.