Skip to content

Commit 83f8936

Browse files
committed
fix: correct markdown syntax in TypeScript newsletter
1 parent 453a84e commit 83f8936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/app/content/newsletters/understanding-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ interface Failure {
435435
}
436436

437437
type Result<T = unknown> = Success<T> | Failure;
438-
```
438+
439439
function handleResult(result: Result) {
440440
if (result.type === "success") {
441441
console.log(result.data);

0 commit comments

Comments
 (0)