Skip to content

Commit 83d01cc

Browse files
committed
Fix a typo in guide
1 parent ea6f65c commit 83d01cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4789,7 +4789,7 @@ of `Option`, we need to provide a concrete type in place of the type
47894789
parameter. For example, if we wanted something like our `OptionalInt`, we would
47904790
need to instantiate an `Option<i32>`. Inside the declaration of our enum,
47914791
wherever we see a `T`, we replace it with the type specified (or inferred by the
4792-
the compiler).
4792+
compiler).
47934793
47944794
```{rust}
47954795
let x: Option<i32> = Some(5);

0 commit comments

Comments
 (0)