Skip to content

Commit c5ce1cf

Browse files
committed
Fix backticks in README.
1 parent 150993a commit c5ce1cf

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
@@ -331,14 +331,14 @@ This creates a new metadata item of the specified type, name and value.
331331
This changes the value of an existing field, but will not change its type.
332332

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

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

340340
```lua
341-
local new_image = image:copy()`
341+
local new_image = image:copy()
342342
new_image:set("orientation", 7)
343343
```
344344

0 commit comments

Comments
 (0)