Skip to content

Commit

Permalink
[docs] fix arguments comment for string or buffer (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin authored and krishnasrinivas committed Jan 2, 2019
1 parent faa7be3 commit 55eae42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/minio.js
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ export class Client {
// __Arguments__
// * `bucketName` _string_: name of the bucket
// * `objectName` _string_: name of the object
// * `string or Buffer` _Stream_ or _Buffer_: Readable stream
// * `string or Buffer` _string_ or _Buffer_: string or buffer
// * `callback(err, etag)` _function_: non null `err` indicates error, `etag` _string_ is the etag of the object uploaded.
putObject(bucketName, objectName, stream, size, metaData, callback) {
if (!isValidBucketName(bucketName)) {
Expand Down

0 comments on commit 55eae42

Please sign in to comment.