Skip to content

Commit

Permalink
Fixed parentheses pair in documentation (minio#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 authored May 14, 2021
1 parent 8363592 commit e53dcea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ try (InputStream stream = minioClient.getObject(
GetObjectArgs.builder()
.bucket("my-bucketname")
.object("my-objectname")
.build()) {
.build())) {
// Read data from stream
}

Expand All @@ -1178,7 +1178,7 @@ try (InputStream stream = minioClient.getObject(
.bucket("my-bucketname")
.object("my-objectname")
.offset(1024L)
.build()) {
.build())) {
// Read data from stream
}

Expand All @@ -1189,7 +1189,7 @@ try (InputStream stream = minioClient.getObject(
.object("my-objectname")
.offset(1024L)
.length(4096L)
.build()) {
.build())) {
// Read data from stream
}

Expand All @@ -1199,7 +1199,7 @@ try (InputStream stream = minioClient.getObject(
.bucket("my-bucketname")
.object("my-objectname")
.ssec(ssec)
.build()) {
.build())) {
// Read data from stream
}

Expand All @@ -1211,7 +1211,7 @@ try (InputStream stream = minioClient.getObject(
.offset(1024L)
.length(4096L)
.ssec(ssec)
.build()) {
.build())) {
// Read data from stream
}
```
Expand Down

0 comments on commit e53dcea

Please sign in to comment.