Skip to content

Commit

Permalink
Make the definition of Option match the stdlib's, fixes #2634
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Jul 14, 2021
1 parent 2a8defb commit f19baaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch06-01-defining-an-enum.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ as follows:

```rust
enum Option<T> {
Some(T),
None,
Some(T),
}
```

Expand Down

0 comments on commit f19baaf

Please sign in to comment.