From 257453637a14147bdba7fe9e2a0d49146fadd9bd Mon Sep 17 00:00:00 2001 From: Jamie Sinclair Date: Sat, 2 Nov 2024 22:30:06 +0900 Subject: [PATCH] chore: replace jpeg references in "Notice" comments --- packages/qoi/decode.ts | 4 ++-- packages/qoi/encode.ts | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/packages/qoi/decode.ts b/packages/qoi/decode.ts index ea8286c..5c23b6b 100644 --- a/packages/qoi/decode.ts +++ b/packages/qoi/decode.ts @@ -12,8 +12,8 @@ */ /** - * Notice: I (Jamie Sinclair) have copied this code from the JPEG encode module - * and modified it to decode JPEG images. + * Notice: I (Jamie Sinclair) have copied this code from the original and modified + * to align with the jSquash project structure. */ import type { QOIModule } from './codec/dec/qoi_dec.js'; diff --git a/packages/qoi/encode.ts b/packages/qoi/encode.ts index 4cd741b..ab2ff74 100644 --- a/packages/qoi/encode.ts +++ b/packages/qoi/encode.ts @@ -12,9 +12,8 @@ */ /** - * Notice: I (Jamie Sinclair) have modified this file. - * Updated to support a partial subset of Jpeg encoding options to be provided. - * The jpeg options are defaulted to defaults from the meta.ts file. + * Notice: I (Jamie Sinclair) have copied this code from the original and modified + * to align with the jSquash project structure. */ import type { QOIModule } from './codec/enc/qoi_enc.js';