From 1765cd2a830080be5ce53521fe3e71a4922c3ec6 Mon Sep 17 00:00:00 2001 From: Joshua Lochner Date: Tue, 26 Nov 2024 14:06:49 +0000 Subject: [PATCH] Update JSDoc --- src/utils/image.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/image.js b/src/utils/image.js index e83f8e85d..04562592a 100644 --- a/src/utils/image.js +++ b/src/utils/image.js @@ -659,7 +659,7 @@ export class RawImage { } /** - * Split the image data into individual bands. This method returns an array of individual image bands from an image. + * Split this image into individual bands. This method returns an array of individual image bands from an image. * For example, splitting an "RGB" image creates three new images each containing a copy of one of the original bands (red, green, blue). * * Inspired by PIL's `Image.split()` [function](https://pillow.readthedocs.io/en/latest/reference/Image.html#PIL.Image.Image.split).