Skip to content

Commit 11cc577

Browse files
committed
typo
1 parent 4811a51 commit 11cc577

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ docker run -p "3000:3000" codeinchq/watermarker
4242

4343
A simple scenario to apply a watermark to an image using `curl`:
4444
```bash
45-
curl -X POST -F "image=@/path/po/image.png" -F "watermark=@/path/to/watermark.png" http://localhost:3000/apply -o watermarked.png
45+
curl -X POST http://localhost:3000/apply -F "image=@/path/to/image.png" -F "watermark=@/path/to/watermark.png" -o watermarked.png
4646
```
4747

4848
A more complex scenario with additional parameters:
4949
```bash
50-
curl -X POST -F "image=@/path/po/image.png" -F "watermark=@/path/to/watermark.png" http://localhost:3000/apply -F "blur=3" -F "ratio=1" -F "format=jpg" -F "quality=100" -o test-watermarked.jpg
50+
curl -X POST http://localhost:3000/apply -F "image=@/path/to/image.png" -F "watermark=@/path/to/watermark.png" -F "blur=3" -F "ratio=1" -F "format=jpg" -F "quality=100" -o test-watermarked.jpg
5151
```
5252

5353
## Client

0 commit comments

Comments
 (0)