Skip to content

Commit 44546ef

Browse files
committed
Fix typo
1 parent da3311d commit 44546ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/diffusers/pipeline_flax_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def components(self) -> Dict[str, Any]:
503503
```
504504
505505
Returns:
506-
A dictionaly containing all the modules needed to initialize the pipeline.
506+
A dictionary containing all the modules needed to initialize the pipeline.
507507
"""
508508
expected_modules, optional_parameters = self._get_signature_keys(self)
509509
components = {

src/diffusers/pipeline_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ def components(self) -> Dict[str, Any]:
764764
```
765765
766766
Returns:
767-
A dictionaly containing all the modules needed to initialize the pipeline.
767+
A dictionary containing all the modules needed to initialize the pipeline.
768768
"""
769769
expected_modules, optional_parameters = self._get_signature_keys(self)
770770
components = {

0 commit comments

Comments
 (0)