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..7fc1799ce617 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 @@ -5,11 +5,12 @@ permalink: /docs/handbook/typescript-tooling-in-5-minutes.html oneline: A tutorial to understand how to create a small website with TypeScript translatable: true --- +##done Let's get started by building a simple web application with TypeScript. ## Installing TypeScript - +##done There are two main ways to add TypeScript to your project: - Via npm (the Node.js package manager) @@ -125,7 +126,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 {