Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo: blobServiceClient.findBlobsByTags js example invaild ref 'container' #1500

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

2743d2
Copy link

@2743d2 2743d2 commented Apr 11, 2023

blobServiceClient.findBlobsByTags()

let i = 1;
for await (const blob of blobServiceClient.findBlobsByTags("tagkey='tagvalue'")) {
  console.log(`Blob ${i++}: ${container.name}`);
}

should be ${blob.name}

…tainer'

```javascript
let i = 1;
for await (const blob of blobServiceClient.findBlobsByTags("tagkey='tagvalue'")) {
  console.log(`Blob ${i++}: ${container.name}`);
}
```
should be ${blob.name}
@learn-build-service-prod
Copy link
Contributor

Learn Build status updates of commit ccb2e9c:

✅ Validation status: passed

File Status Preview URL Details
docs-ref-autogen/@azure/storage-blob/BlobServiceClient.yml ✅Succeeded View (azure-node-latest)

For more details, please refer to the build report.

For any questions, please:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant