From 4e0d09bebea59f2710d798125c4c9bf7da657ffe Mon Sep 17 00:00:00 2001 From: pkucode Date: Wed, 7 Aug 2024 18:14:57 +0800 Subject: [PATCH] chore: fix comment Signed-off-by: pkucode --- web/assets/codemirror/jshint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/codemirror/jshint.js b/web/assets/codemirror/jshint.js index cf815302..8df5c33a 100644 --- a/web/assets/codemirror/jshint.js +++ b/web/assets/codemirror/jshint.js @@ -26238,7 +26238,7 @@ var JSHINT = (function() { /** * The `expression` function is the heart of JSHint's parsing behaior. It is * based on the Pratt parser, but it extends that model with a `fud` method. - * Short for "first null denotation," it it similar to the `nud` ("null + * Short for "first null denotation," it is similar to the `nud` ("null * denotation") function, but it is only used on the first token of a * statement. This simplifies usage in statement-oriented languages like * JavaScript.