Skip to content

Commit 2bf4f94

Browse files
Edits
1 parent 9714506 commit 2bf4f94

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/storage/blobs/storage-blob-container-create-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.custom: devx-track-python, devguide-python
1818

1919
Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. This article shows how to create containers with the [Azure Storage client library for Python](/python/api/overview/azure/storage).
2020

21-
## Name a container
21+
## Container names
2222

2323
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
2424

@@ -42,7 +42,7 @@ You can also create a container using the following method from the [ContainerCl
4242

4343
Containers are created immediately beneath the storage account. It's not possible to nest one container beneath another. An exception is thrown if a container with the same name already exists.
4444

45-
This following example creates a container from a `BlobServiceClient` object:
45+
The following example creates a container from a `BlobServiceClient` object:
4646

4747
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_create_container":::
4848

articles/storage/blobs/storage-blob-container-lease-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The following example renews a lease for a container:
5151
You can either wait for a lease to expire or explicitly release it. When you release a lease, other clients can obtain a lease. You can release a lease by using the following method:
5252

5353
- [BlobLeaseClient.release](/python/api/azure-storage-blob/azure.storage.blob.blobleaseclient#azure-storage-blob-blobleaseclient-release)
54-
54+
s
5555
The following example releases the lease on a container:
5656

5757
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_release_container_lease":::

articles/storage/blobs/storage-blob-containers-list-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To filter the list of containers, specify a string or character for the `name_st
3434

3535
## Code examples
3636

37-
The following example lists all containers and metadata. You can include container metadata by setting `include_metadata` to :
37+
The following example lists all containers and metadata. You can include container metadata by setting `include_metadata` to `True`:
3838

3939
:::code language="python" source="~/azure-storage-snippets/blobs/howto/python/blob-devguide-py/blob-devguide-containers.py" id="Snippet_list_containers":::
4040

0 commit comments

Comments
 (0)