Skip to content

Commit

Permalink
Fix backticks in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandlo committed Apr 11, 2024
1 parent 150993a commit c5ce1cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,14 @@ This creates a new metadata item of the specified type, name and value.
This changes the value of an existing field, but will not change its type.

You can't use `set()` to change core fields such as like `width` or
`interpretation`. Use `copy()` instead.`
`interpretation`. Use `copy()` instead.

Image references will be shared by the operation cache, so modifying an image
can change an image somewhere else in your program. Before changing an image,
you must make sure you own a private copy of an image with `copy`.

```lua
local new_image = image:copy()`
local new_image = image:copy()
new_image:set("orientation", 7)
```

Expand Down

0 comments on commit c5ce1cf

Please sign in to comment.