Skip to content

Commit da855a2

Browse files
Fix typo for visual represent.
1 parent 399c25f commit da855a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book-content/chapters/05-unions-literals-and-narrowing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ type DigitalFormat = "MP3" | "FLAC";
111111
type PhysicalFormat = "LP" | "CD" | "Cassette";
112112
```
113113

114-
We could then specify `AlbumFormat` as a union of `DigitalFormat` and `PhysicalFormat:
114+
We could then specify `AlbumFormat` as a union of `DigitalFormat` and `PhysicalFormat`:
115115

116116
```tsx
117117
type AlbumFormat = DigitalFormat | PhysicalFormat;

0 commit comments

Comments
 (0)