From fc27c70a9768ea758258c193c1b18c636a8225f0 Mon Sep 17 00:00:00 2001 From: jacoblee93 Date: Mon, 29 Jul 2024 15:18:33 -0700 Subject: [PATCH] Fix --- docs/core_docs/scripts/validate_notebook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_docs/scripts/validate_notebook.ts b/docs/core_docs/scripts/validate_notebook.ts index a214420a49a3..00ba61aa30d0 100644 --- a/docs/core_docs/scripts/validate_notebook.ts +++ b/docs/core_docs/scripts/validate_notebook.ts @@ -72,7 +72,7 @@ const run = async () => { if (issueStrings.length) { const issues = issueStrings.join("\n"); console.error(issues); - const err = new Error("Found type errors in new notebook:"); + const err = new Error("Found type errors in new notebook."); (err as any).details = issues; throw err; }