From f0e630036748e74dd7f2535e05b85bc118d15963 Mon Sep 17 00:00:00 2001 From: fcrozatier Date: Fri, 4 Jul 2025 15:07:00 +0200 Subject: [PATCH] fix typos --- README.md | 2 +- mod.ts | 6 ------ parser.ts | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7a4e1b8..ad3c187 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # HTMLCrunch -A clean, simple and lightweight HTML parser. +A clean, simple, lightweight HTML parser. ## Features diff --git a/mod.ts b/mod.ts index 5a8ebab..b680f2f 100644 --- a/mod.ts +++ b/mod.ts @@ -1,9 +1,3 @@ -/** - * A simple, lightweight HTML parser - * - * @module - */ - export { type Parser } from "@fcrozatier/monarch"; export { booleanAttributes, diff --git a/parser.ts b/parser.ts index bc12af2..4e9519e 100644 --- a/parser.ts +++ b/parser.ts @@ -302,7 +302,7 @@ const attributeValue = alt( ); /** - * Parsers an HTML attribute + * Parses an HTML attribute */ export const attribute: Parser<[string, string]> = alt<[string, string]>( seq(