Typo.
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 07:20:07 +0000 (09:20 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 07:20:07 +0000 (09:20 +0200)
book/src/06_ticket_management/12_two_states.md

index 69de82b..0be7212 100644 (file)
@@ -44,7 +44,7 @@ pub struct Ticket {
 That's also not ideal—we'd have to handle the `None` case every single time we retrieve a ticket from the store,
 even though we know that the id should always be there once the ticket has been created.
 
-The best solution is two have two different ticket **states**, represented by two separate types:
+The best solution is to have two different ticket **states**, represented by two separate types:
 a `TicketDraft` and a `Ticket`:
 
 ```rust