Skip to content

Commit f54f8b3

Browse files
committed
Fix 'renamed lint' warnings
1 parent f187573 commit f54f8b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/libstd/sys/common/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![allow(missing_doc)]
11+
#![allow(missing_docs)]
1212
#![allow(dead_code)]
1313

1414
use io::{mod, IoError, IoResult};

src/libstd/sys/unix/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![allow(missing_doc)]
11+
#![allow(missing_docs)]
1212
#![allow(non_camel_case_types)]
1313
#![allow(unused_imports)]
1414
#![allow(dead_code)]

src/libstd/sys/windows/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![allow(missing_doc)]
11+
#![allow(missing_docs)]
1212
#![allow(non_camel_case_types)]
1313
#![allow(non_snake_case)]
1414
#![allow(unused_imports)]

0 commit comments

Comments
 (0)