Fix spelling (#2069)

Changed "Conditinal" to "Conditional"
This commit is contained in:
Mandeep Sekhon 2023-12-14 08:46:17 +11:00 committed by GitHub
parent afb4634e79
commit 1dbdb9c1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ type Point = { x: number; y: number };
type P = keyof Point; // x | y
```
## Conditinal Types
## Conditional Types
```ts
// SomeType extends OtherType ? TrueType : FalseType;