From ae894668433412d865e8a331de56bc6d247ef28f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9A=A1=20Sigui?= Date: Tue, 11 Mar 2025 15:08:15 +0100 Subject: [PATCH] =?UTF-8?q?veb.assets:=20=E2=9C=8F=EF=B8=8F=20fix=20typo?= =?UTF-8?q?=20in=20`veb.assets`=20error=20message=20(#23908)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vlib/veb/assets/assets.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/veb/assets/assets.v b/vlib/veb/assets/assets.v index c37dca0680..0b716564c4 100644 --- a/vlib/veb/assets/assets.v +++ b/vlib/veb/assets/assets.v @@ -93,7 +93,7 @@ pub fn (mut am AssetManager) add(asset_type AssetType, file_path string, include return error('cannot minify asset of type "all"') } if !os.exists(file_path) { - return error('cnanot add asset: file "${file_path}" does not exist') + return error('cannot add asset: file "${file_path}" does not exist') } last_modified_unix := os.file_last_mod_unix(file_path)