From c61a57ffbf4706f9cea67eff08bf5bc1c481bba2 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Wed, 16 Aug 2023 10:34:09 -0500 Subject: [PATCH] GIF (minor): fix incorrect comment referencing PNG --- public/gif/parseGif.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/gif/parseGif.js b/public/gif/parseGif.js index d707524..759eaed 100644 --- a/public/gif/parseGif.js +++ b/public/gif/parseGif.js @@ -5,7 +5,7 @@ import { GifNodeType } from "./constants.js"; /** * @param {Uint8Array} bytes - * @returns {null | GifNode} The root node of the PNG tree, or null if the PNG is invalid. + * @returns {null | GifNode} The root node of the GIF tree, or null if the GIF is invalid. */ export default (bytes) => { /** @type {GifNode[]} */