Skip to content

Commit

Permalink
fix bad backtick in doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornregnell committed Jun 11, 2024
1 parent c41fc54 commit c02ec38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/introprog/Image.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Image (val underlying: java.awt.image.BufferedImage):
this


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

0 comments on commit c02ec38

Please sign in to comment.