Skip to content

Commit

Permalink
Fix mistake whoops!
Browse files Browse the repository at this point in the history
  • Loading branch information
nino authored and lpil committed Sep 12, 2023
1 parent 749ab3e commit 92459d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book-src/tour/custom-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ Cat(name: "Jinx", cuteness: 2002)

```javascript
// JavaScript
import { Guest, LoggedIn, Animal } from "my_module.mjs";
import { Guest, LoggedIn, Cat } from "my_module.mjs";

new Guest();
new LoggedIn("Kim");
new Animal("Jinx", 2002);
new Cat("Jinx", 2002);
```

0 comments on commit 92459d0

Please sign in to comment.