Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ Imgproxy.url_for(

You can find argument names on the [Supported processing options](docs/processing_options.md) and [Supported info options](docs/info_options.md) pages.

##### Using named arguments with usupported options
##### Using named arguments with unsupported options

You can use named arguments even if the option is not supported by the gem. In this case the arguments won't be reordered nor formatted, so you should provide them in the same order and right the same way they should appear in the URL:

Expand Down Expand Up @@ -334,7 +334,7 @@ The arguments of the complex options can be provided as an array of formatted va
Imgproxy.url_for(
"http://images.example.com/images/image.jpg",
crop: [500, 600, :nowe, 10, 5],
trim: [10, "aabbcc", 1. 1]
trim: [10, "aabbcc", 1, 1]
)
# => .../c:500:600:nowe:10:5/t:10:aabbcc:1:1/...
```
Expand Down