From 034ebde30bb24a4de99a65267b674d28a5f86a45 Mon Sep 17 00:00:00 2001 From: CodePencil Date: Wed, 3 Sep 2025 14:06:34 +0800 Subject: [PATCH] docs(utility): fixed typo --- docs/utility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/utility.md b/docs/utility.md index 651d3b1..9569934 100644 --- a/docs/utility.md +++ b/docs/utility.md @@ -277,7 +277,7 @@ type Omit `OmitThisParameter`从函数类型中移除 this 参数。 ```typescript -function toHex(this: Number) { +function toHex(this: number) { return this.toString(16); }