Minor fixes (#86)

fix format
This commit is contained in:
spiralcat 2023-12-04 15:57:11 +08:00 committed by GitHub
parent ca6580b231
commit c0e042aeb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2872,7 +2872,7 @@ The constructor is defined using the `constructor` keyword. It takes name and ag
The class has a `public` method named sayHi that logs a greeting message.
To create an instance of a class in TypeScript, you can use the `new` keyword followed by the class name, followed by parentheses `()``. For instance:
To create an instance of a class in TypeScript, you can use the `new` keyword followed by the class name, followed by parentheses `()`. For instance:
<!-- skip -->
```typescript