From 28dc91549828e894bb4d911ecd7246f0d2fc88f8 Mon Sep 17 00:00:00 2001 From: cswimr Date: Wed, 12 Feb 2025 01:10:59 -0600 Subject: [PATCH] fix(parser): correct jsdoc comment --- packages/parser/package.json | 2 +- packages/parser/src/enums/hash-format.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/parser/package.json b/packages/parser/package.json index 9669770..d14faf0 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,7 +1,7 @@ { "name": "@packwizjs/parser", "module": "src/index.ts", - "version": "1.1.1", + "version": "1.1.2", "type": "module", "description": "A simple library for parsing Packwiz TOML files", "author": { diff --git a/packages/parser/src/enums/hash-format.ts b/packages/parser/src/enums/hash-format.ts index 092bec3..697de0a 100644 --- a/packages/parser/src/enums/hash-format.ts +++ b/packages/parser/src/enums/hash-format.ts @@ -46,6 +46,7 @@ export function isValidHashFormat(hashFormat: string): HashFormat { * @param hash - The hash to check against. * @param hashFormat - The hashing format to use. * @param data - The data to hash and compare. + * @returns true if the hashes match, false otherwise. */ export function doHashesMatch( hash: string,