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 @@ -277,8 +277,8 @@ names of the original files, e.g., use `*.scss` instead of `*.css`.

```liquid
{{ assets["bundle.css"].content_type }} => "text/css"
{{ assets["images.jpg"].width }} => 62
{{ assets["images.jpg"].height }} => 62
{{ assets["images.jpg"].dimensionns.width }} => 62

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{{ assets["images.jpg"].dimensionns.width }} => 62
{{ assets["images.jpg"].dimensions.width }} => 62

{{ assets["images.jpg"].dimensionns.height }} => 62

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{{ assets["images.jpg"].dimensionns.height }} => 62
{{ assets["images.jpg"].dimensions.height }} => 62

```

The current list of available accessors:
Expand Down