From: Saghm Rossi Date: Wed, 15 Feb 2017 22:52:25 +0000 (-0500) Subject: Fix typo in code example X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~9^2~143^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9c32346466aaaf293775972c272181056b3614e1;p=cargo.git Fix typo in code example --- diff --git a/src/doc/guide.md b/src/doc/guide.md index 8ca9f4b9c..6949fe6af 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -464,7 +464,7 @@ authors = [{{toml-escape author}}] ```rust // src/main.rs fn main() { - prinln!("This is the {{name}} project!"); + println!("This is the {{name}} project!"); } ```