Skip to content

Commit 4ade479

Browse files
authored
Merge pull request #2904 from nikogenix/patch-7
Update part9b.md - Fix typo
2 parents 1291fbd + 160ba91 commit 4ade479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ export type Operation = 'multiply' | 'add' | 'divide';
10401040
Now we can import the type and use a <i>type assertion</i> to tell the TypeScript compiler what type a variable has:
10411041
10421042
```js
1043-
import { calculator, Operation } from './calculator'; // highligh-line
1043+
import { calculator, Operation } from './calculator'; // highlight-line
10441044
10451045
app.post('/calculate', (req, res) => {
10461046
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment

0 commit comments

Comments
 (0)