Skip to content

Commit

Permalink
Fix typo in the readme (minio#767)
Browse files Browse the repository at this point in the history
* Changed Println with formatting to a Printf
* Change to Printf("%#v")
  • Loading branch information
fetmar authored and deekoder committed Aug 2, 2017
1 parent 8789a38 commit d2e3c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func main() {
log.Fatalln(err)
}

log.Println("%v", minioClient) // minioClient is now setup
log.Printf("%#v\n", minioClient) // minioClient is now setup
```
## Quick Start Example - File Uploader
Expand Down

0 comments on commit d2e3c5c

Please sign in to comment.