Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit b60de14

Browse files
authored
Fix typo in code (#167)
1 parent d79a6c1 commit b60de14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/multi-modal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Chroma has an data loader for loading images from a filesystem built in.
4343

4444
```python
4545
from chromadb.utils.data_loaders import ImageDataLoader
46-
data_loader = ImageDataLoader()
46+
data_loader = ImageLoader()
4747
```
4848

4949
## Multi-modal Collections
@@ -58,7 +58,7 @@ client = chromadb.Client()
5858
collection = client.create_collection(
5959
name='multimodal_collection',
6060
embedding_function=embedding_function,
61-
data_loader=image_loader)
61+
data_loader=data_loader)
6262

6363
```
6464

0 commit comments

Comments
 (0)