Skip to content

Commit ded3174

Browse files
authored
Fix typos (#2608)
1 parent ef504c7 commit ded3174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ images = pipeline(prompt_ids, params, prng_seed, num_inference_steps, jit=True).
235235
images = pipeline.numpy_to_pil(np.asarray(images.reshape((num_samples,) + images.shape[-3:])))
236236
```
237237

238-
Diffusers also has a Image-to-Image generation pipeline with Flax/Jax
238+
Diffusers also has a Image-to-Image generation pipeline with Flax/Jax:
239239
```python
240240
import jax
241241
import numpy as np
@@ -284,7 +284,7 @@ output = pipeline(
284284
output_images = pipeline.numpy_to_pil(np.asarray(output.reshape((num_samples,) + output.shape[-3:])))
285285
```
286286

287-
Diffusers also has a Text-guided inpainting pipeline with Flax/Jax
287+
Diffusers also has a Text-guided inpainting pipeline with Flax/Jax:
288288

289289
```python
290290
import jax

0 commit comments

Comments
 (0)