From 35f553dbd630b8da03e8fdf0faef6f55a5cf5743 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 19 Jan 2012 11:38:15 -0800 Subject: [PATCH] doc: Fix typo --- doc/rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rust.md b/doc/rust.md index 7ffdb233926..f22fb7f2c1f 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -1245,7 +1245,7 @@ mod bar { } // A documentation attribute -#[doc = "Add two numbers together." +#[doc = "Add two numbers together."] fn add(x: int, y: int) { x + y } ~~~~~~~~