Skip to content

Commit

Permalink
Fix: Remove irrelevant errors from example (#3144)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxcaulfield authored Jun 5, 2024
1 parent f5d04b2 commit 69d9eea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/documentation/copy/en/handbook-v2/Classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ class Point {

```ts twoslash
class Point {
x: number;
y: number;
x: number = 0;
y: number = 0;

// Constructor overloads
constructor(x: number, y: number);
Expand Down

0 comments on commit 69d9eea

Please sign in to comment.