From 1956d8b7fa0660b384adfc99d92f3232e1504206 Mon Sep 17 00:00:00 2001 From: Khwahish Seth <148669282+Khwa678@users.noreply.github.com> Date: Wed, 26 Nov 2025 20:08:17 +0530 Subject: [PATCH 1/2] Update TypeScript Tooling in 5 minutes.md --- .../copy/en/tutorials/TypeScript Tooling in 5 minutes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md b/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md index c08b82eb1ba6..f6cd8c2435f6 100644 --- a/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md +++ b/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md @@ -125,7 +125,8 @@ TypeScript supports new features in JavaScript, like support for class-based obj Here we're going to create a `Student` class with a constructor and a few public fields. Notice that classes and interfaces play well together, letting the programmer decide on the right level of abstraction. -Also of note, the use of `public` on parameters to the constructor is a shorthand that allows us to automatically create properties with that name. +Also of note, the use of `public` on constructor parameters is a shorthand that automatically creates properties with those names. + ```ts twoslash class Student { From f8af85ae837ab65dc5d91468d6e85491f78c8b5f Mon Sep 17 00:00:00 2001 From: Khwahish Seth <148669282+Khwa678@users.noreply.github.com> Date: Wed, 26 Nov 2025 20:15:41 +0530 Subject: [PATCH 2/2] Update TypeScript Tooling in 5 minutes.md --- .../copy/en/tutorials/TypeScript Tooling in 5 minutes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md b/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md index f6cd8c2435f6..b1701913fce8 100644 --- a/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md +++ b/packages/documentation/copy/en/tutorials/TypeScript Tooling in 5 minutes.md @@ -102,6 +102,7 @@ Let's develop our sample further. Here we use an interface that describes object In TypeScript, two types are compatible if their internal structure is compatible. This allows us to implement an interface just by having the shape the interface requires, without an explicit `implements` clause. + ```ts twoslash interface Person { firstName: string;