We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 150993a commit c5ce1cfCopy full SHA for c5ce1cf
1 file changed
README.md
@@ -331,14 +331,14 @@ This creates a new metadata item of the specified type, name and value.
331
This changes the value of an existing field, but will not change its type.
332
333
You can't use `set()` to change core fields such as like `width` or
334
-`interpretation`. Use `copy()` instead.`
+`interpretation`. Use `copy()` instead.
335
336
Image references will be shared by the operation cache, so modifying an image
337
can change an image somewhere else in your program. Before changing an image,
338
you must make sure you own a private copy of an image with `copy`.
339
340
```lua
341
-local new_image = image:copy()`
+local new_image = image:copy()
342
new_image:set("orientation", 7)
343
```
344
0 commit comments