From 5a7766767883fa83fc8af63a0913c6449b5957d3 Mon Sep 17 00:00:00 2001 From: Ray <79756094+JulienSuan@users.noreply.github.com> Date: Thu, 17 Jul 2025 16:49:56 +0200 Subject: [PATCH] duplicated "to a" --- packages/documentation/copy/en/release-notes/TypeScript 3.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/release-notes/TypeScript 3.4.md b/packages/documentation/copy/en/release-notes/TypeScript 3.4.md index 2394f8d06f67..dc6bc22f1805 100644 --- a/packages/documentation/copy/en/release-notes/TypeScript 3.4.md +++ b/packages/documentation/copy/en/release-notes/TypeScript 3.4.md @@ -380,7 +380,7 @@ export default { One thing to note is that `const` assertions can only be applied immediately on simple literal expressions. ```ts -// Error! A 'const' assertion can only be applied to a +// Error! A 'const' assertion can only be applied // to a string, number, boolean, array, or object literal. let a = (Math.random() < 0.5 ? 0 : 1) as const; let b = (60 * 60 * 1000) as const;