Skip to content

Commit

Permalink
Inpainting: typo in docs (huggingface#3331)
Browse files Browse the repository at this point in the history
Typo in docs

Co-authored-by: Patrick von Platen <[email protected]>
LysandreJik and patrickvonplaten authored May 6, 2023
1 parent 0407c3e commit b0966f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/en/using-diffusers/inpaint.mdx
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ Now you can create a prompt to replace the mask with something else:

```python
prompt = "Face of a yellow cat, high resolution, sitting on a park bench"
image = pipe(prompt=prompt, image=init_image, mask_image=mask_image).images[0]
image = pipeline(prompt=prompt, image=init_image, mask_image=mask_image).images[0]
```

`image` | `mask_image` | `prompt` | output |

0 comments on commit b0966f5

Please sign in to comment.