From aa3832ceda2b40d6775d2539dd85b1597d2ba21c Mon Sep 17 00:00:00 2001 From: Anton Zavodchikov Date: Fri, 29 Sep 2023 02:00:41 -0700 Subject: [PATCH] net.html: make public the CloseTagType enum (#19468) --- vlib/net/html/tag.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/net/html/tag.v b/vlib/net/html/tag.v index 53d7232f61..1305f336f4 100644 --- a/vlib/net/html/tag.v +++ b/vlib/net/html/tag.v @@ -3,7 +3,7 @@ module html import strings import datatypes -enum CloseTagType { +pub enum CloseTagType { in_name new_tag }