Skip to content

Commit 57f7a98

Browse files
authored
Merge pull request #271 from datacarpentry/zkamvar-patch-1
fix missing block quote symbol
2 parents 6910aa0 + 11007b5 commit 57f7a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/03-skimage-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ i.e., pixels that do not belong to the black background.
259259
We will start by reading the image and displaying it.
260260
261261
> ## Loading images with `imageio`: Read-only arrays
262-
When loading an image with `imageio`, in certain situations the image is stored in a read-only array. If you attempt to manipulate the pixels in a read-only array, you will receive an error message `ValueError: assignment destination is read-only`. In order to make the image array writeable, we can create a copy with `image = np.array(image)` before manipulating the pixel values.
262+
> When loading an image with `imageio`, in certain situations the image is stored in a read-only array. If you attempt to manipulate the pixels in a read-only array, you will receive an error message `ValueError: assignment destination is read-only`. In order to make the image array writeable, we can create a copy with `image = np.array(image)` before manipulating the pixel values.
263263
{: .callout}
264264
265265
~~~

0 commit comments

Comments
 (0)