Skip to content

Commit

Permalink
fixup refernces
Browse files Browse the repository at this point in the history
  • Loading branch information
prakashsvmx committed Nov 29, 2023
1 parent 6ed31b9 commit 02a9929
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ The full API Reference is available here.
- [list-incomplete-uploads.js](https://github.com/minio/minio-js/blob/master/examples/list-incomplete-uploads.js)
- [get-bucket-versioning.mjs](https://github.com/minio/minio-js/blob/master/examples/get-bucket-versioning.js)
- [set-bucket-versioning.mjs](https://github.com/minio/minio-js/blob/master/examples/set-bucket-versioning.js)
- [set-bucket-tagging.js](https://github.com/minio/minio-js/blob/master/examples/set-bucket-tagging.js)
- [get-bucket-versioning.js](https://github.com/minio/minio-js/blob/master/examples/get-bucket-versioning.js)
- [set-bucket-versioning.js](https://github.com/minio/minio-js/blob/master/examples/set-bucket-versioning.js)
- [set-bucket-tagging.mjs](https://github.com/minio/minio-js/blob/master/examples/set-bucket-tagging.js)
- [get-bucket-versioning.mjs](https://github.com/minio/minio-js/blob/master/examples/get-bucket-versioning.js)
- [set-bucket-versioning.mjs](https://github.com/minio/minio-js/blob/master/examples/set-bucket-versioning.js)
- [set-bucket-tagging.mjs](https://github.com/minio/minio-js/blob/master/examples/set-bucket-tagging.js)
- [get-bucket-tagging.mjs](https://github.com/minio/minio-js/blob/master/examples/get-bucket-tagging.mjs)
- [remove-bucket-tagging.mjs](https://github.com/minio/minio-js/blob/master/examples/remove-bucket-tagging.js)
Expand Down
4 changes: 2 additions & 2 deletions src/internal/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,7 @@ export class TypedClient {
await this.makeRequestAsyncOmit({ method, bucketName, query }, payload)
}

async setTagging(taggingParams: PutTaggingParams): Promise<void> {
private async setTagging(taggingParams: PutTaggingParams): Promise<void> {
const { bucketName, objectName, tags, putOpts } = taggingParams
const method = 'PUT'
let query = 'tagging'
Expand Down Expand Up @@ -1972,7 +1972,7 @@ export class TypedClient {
await this.makeRequestAsyncOmit(requestOptions, payloadBuf)
}

async removeTagging({ bucketName, objectName, removeOpts }: RemoveTaggingParams): Promise<void> {
private async removeTagging({ bucketName, objectName, removeOpts }: RemoveTaggingParams): Promise<void> {
const method = 'DELETE'
let query = 'tagging'

Expand Down

0 comments on commit 02a9929

Please sign in to comment.