Skip to content

Commit

Permalink
update docusaurus
Browse files Browse the repository at this point in the history
  • Loading branch information
mkosir committed Mar 8, 2024
1 parent 3f3a39b commit c1191fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ type Color = `${BaseColor}-${Variant}` | `#${string}`;
### Discriminated union

Discriminated unions are a powerful concept to model complex data structures and improve type safety in TypeScript codebases, leading to clearer, more maintainable, and less error-prone code.
You may encounter discriminated unions under different names such as tagged unions or sum types in various programming languages C, Rust, Haskell etc.
You may encounter discriminated unions under different names such as tagged unions or sum types in various programming languages as C, Haskell, Rust (in conjunction with pattern-matching).

Embrace using discriminated unions:

Expand Down

0 comments on commit c1191fb

Please sign in to comment.