From b6cf5f5af11b06fa117c4398c7727538ddcf0391 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Fri, 6 Dec 2013 12:09:07 -0500 Subject: [PATCH] Fix tiny formatting error. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index f8e81ae8722..ac559ae69b7 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -335,7 +335,7 @@ let d = 1000i32; // d is an i32 There are two floating-point types: `f32`, and `f64`. Floating-point numbers are written `0.0`, `1e6`, or `2.1e-4`. Like integers, floating-point literals are inferred to the correct type. -Suffixes ``f32`, and `f64` can be used to create literals of a specific type. +Suffixes `f32`, and `f64` can be used to create literals of a specific type. The keywords `true` and `false` produce literals of type `bool`.