From 77ca038e8c94e6333187b9a7453f048f1f208f01 Mon Sep 17 00:00:00 2001 From: Arman Toreniyazov <50195619+armanokka@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:25:57 +0300 Subject: [PATCH] Typo in TS docs (#7869) --- .../content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/typescript/content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md b/src/data/roadmaps/typescript/content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md index 800826f32..d787b99b5 100644 --- a/src/data/roadmaps/typescript/content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md +++ b/src/data/roadmaps/typescript/content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md @@ -10,7 +10,7 @@ type typeAB = typeA & typeB; The `typeAB` will have all properties from both typeA and typeB. -Note that the union type uses the `|` operator that defines a variable which can hold a value of either `typeA` or `typeB` +Note that the union type uses the `|` operator that defines a variable which can hold `typeA` value, or `typeB` value, or both altogether. Learn more from the following links: