doc: Fix typo

This commit is contained in:
Brian Anderson 2012-01-19 11:38:15 -08:00
parent 4e7de69cda
commit 35f553dbd6

View File

@ -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 }
~~~~~~~~