From 83d01cc5ae6029276788ddc94af4488671a9fcd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Vr=C3=A1na?= Date: Tue, 6 Jan 2015 16:53:45 -0800 Subject: [PATCH] Fix a typo in guide --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 66551ec499a..e7f39e46c93 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -4789,7 +4789,7 @@ of `Option`, we need to provide a concrete type in place of the type parameter. For example, if we wanted something like our `OptionalInt`, we would need to instantiate an `Option`. Inside the declaration of our enum, wherever we see a `T`, we replace it with the type specified (or inferred by the -the compiler). +compiler). ```{rust} let x: Option = Some(5);