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: