Skip to content

Commit bc19e03

Browse files
Update official-typings-bugs.md [(utitity)->(utility)](1) (typescript-cheatsheets#716)
1 parent e867ed2 commit bc19e03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2659,7 +2659,7 @@ Because you don't have to explicitly import this, this is known as an [ambient m
26592659
You can also do ambient variable and ambient type declarations:
26602660
26612661
```ts
2662-
// ambient utiltity type
2662+
// ambient utility type
26632663
type ToArray<T> = T extends unknown[] ? T : T[];
26642664
// ambient variable
26652665
declare let process: {

docs/basic/troubleshooting/official-typings-bugs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Because you don't have to explicitly import this, this is known as an [ambient m
4848
You can also do ambient variable and ambient type declarations:
4949

5050
```ts
51-
// ambient utiltity type
51+
// ambient utility type
5252
type ToArray<T> = T extends unknown[] ? T : T[];
5353
// ambient variable
5454
declare let process: {

0 commit comments

Comments
 (0)