Browse Source

Fix warning about renamed missing doc attribute.

Joseph Crail 10 years ago
parent
commit
11901f7724
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/rational.rs

+ 1 - 1
src/rational.rs

@@ -22,7 +22,7 @@ use bigint::{BigInt, BigUint, Sign, Plus, Minus};
 
 /// Represents the ratio between 2 numbers.
 #[deriving(Clone, Hash)]
-#[allow(missing_doc)]
+#[allow(missing_docs)]
 pub struct Ratio<T> {
     numer: T,
     denom: T