From a6952ffdfcfe3f6b592f172170bc20f1f41a0c84 Mon Sep 17 00:00:00 2001 From: Udoh Jeremiah Date: Thu, 25 Apr 2024 15:47:46 +0100 Subject: [PATCH] Fix typo --- .../copy/en/get-started/TS for Functional Programmers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/documentation/copy/en/get-started/TS for Functional Programmers.md b/packages/documentation/copy/en/get-started/TS for Functional Programmers.md index 770e04cb4a75..9cf3038a53b8 100644 --- a/packages/documentation/copy/en/get-started/TS for Functional Programmers.md +++ b/packages/documentation/copy/en/get-started/TS for Functional Programmers.md @@ -76,8 +76,8 @@ TypeScript has corresponding primitive types for the built-in types: | -------------- | ------------------------------------------------------------------------------- | | `unknown` | the top type. | | `never` | the bottom type. | -| object literal | eg `{ property: Type }` | -| `void` | for functions with no documented return value | +| object literal | e.g. `{ property: Type }` | +| `void` | for functions with no documented return value | | `T[]` | mutable arrays, also written `Array` | | `[T, T]` | tuples, which are fixed-length but mutable | | `(t: T) => U` | functions |