Skip to content

Commit 6914192

Browse files
authored
Merge pull request #43 from sametcelikbicak/fix-typo
Fix typo for visual represent.
2 parents 399c25f + da855a2 commit 6914192

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)