From 66533f5ab176f89087db496ea130a9de325fcc64 Mon Sep 17 00:00:00 2001 From: Rasmus Melchior Jacobsen Date: Thu, 22 Jan 2026 14:34:52 +0100 Subject: [PATCH] Fix order of types in OneOf Option example This will in turn ensure that `default(OneOf)` is `None` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index beea4b1..60bd97c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ public IActionResult Register(string username) #### As an 'Option' Type -It's simple to use OneOf as an `Option` type - just declare a `OneOf`. OneOf comes with a variety of useful Types in the `OneOf.Types` namespace, including `Yes`, `No`, `Maybe`, `Unknown`, `True`, `False`, `All`, `Some`, and `None`. +It's simple to use OneOf as an `Option` type - just declare a `OneOf`. OneOf comes with a variety of useful Types in the `OneOf.Types` namespace, including `Yes`, `No`, `Maybe`, `Unknown`, `True`, `False`, `All`, `Some`, and `None`. #### Benefits