From 3a52ee97463d8ab1f35ef7c0f08d3696bc38e5c4 Mon Sep 17 00:00:00 2001 From: Adam Skoufis Date: Tue, 19 Sep 2023 14:07:41 +1000 Subject: [PATCH] fix: Fixed typo in JSDoc for HTMLElement `structure` method --- src/nodes/html.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/html.ts b/src/nodes/html.ts index c8eebe8..c6d222a 100644 --- a/src/nodes/html.ts +++ b/src/nodes/html.ts @@ -407,7 +407,7 @@ export default class HTMLElement extends Node { } /** * Get DOM structure - * @return {string} strucutre + * @return {string} structure */ public get structure() { const res = [] as string[];