diff --git a/docs/source/en/guides/collections.md b/docs/source/en/guides/collections.md index c800c32b43..9421b7a50f 100644 --- a/docs/source/en/guides/collections.md +++ b/docs/source/en/guides/collections.md @@ -64,7 +64,7 @@ In addition to these base attributes, returned items can have additional attribu ## Create a new collection -Now that we know how to get a [`Collection`], let's create our own! Use [`create_collection`] with a title and description. +Now that we know how to get a [`Collection`], let's create our own! Use [`create_collection`] with a title and description. To create a collection on an organization page, pass `namespace="my-cool-org"` when creating the collection. Finally, you can also create private collections by passing `private=True`. ```py >>> from huggingface_hub import create_collection @@ -86,8 +86,6 @@ It will return a [`Collection`] object with the high-level metadata (title, desc "username" ``` -To create a collection on an organization page, pass `namespace="my-cool-org"` when creating the collection. Finally, you can also create private collections by passing `private=True`. - ## Manage items in a collection Now that we have a [`Collection`], we want to add items to it and organize them.