aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7a19692..35cbc47 100644
--- a/README.md
+++ b/README.md
@@ -72,12 +72,12 @@ intensity, defaulting to 255 if not provided.
Returns the maximum pixel intensity value for the specified PGM image.
-#### `(image-ref image x y) → integer`
+#### `(image-ref pgm-image x y) → integer`
Returns the gray value of the pixel at coordinates `(x, y)` in the
specified PGM image. The value is an integer between 0 and `maxval`.
-#### `(image-set! image x y v)`
+#### `(image-set! pgm-image x y v)`
Sets the pixel at coordinates `(x, y)` in the specified PGM image to
the given integer value `v`, which must be between 0 and `maxval`.
@@ -90,7 +90,7 @@ Creates a new Portable Pixel Map (PPM) image with the specified width
and height. The optional `maxval` parameter defines the maximum color
intensity, defaulting to 255 if not provided.
-#### `(image-maxval pgm-image) → integer`
+#### `(image-maxval ppm-image) → integer`
Returns the maximum color intensity value for the specified PPM image.