Skip to content

Commit c02ec38

Browse files
committed
fix bad backtick in doc comment
1 parent c41fc54 commit c02ec38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/introprog/Image.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Image (val underlying: java.awt.image.BufferedImage):
3232
this
3333

3434

35-
/** Extract and return image pixels.*/
35+
/** Extract and return image pixels. */
3636
def toMatrix: Array[Array[Color]] =
3737
val xs: Array[Array[Color]] = Array.ofDim(width, height)
3838
for x <- 0 until width; y <- 0 until height do

0 commit comments

Comments
 (0)