Skip to content

Commit c113099

Browse files
committed
docs
1 parent af72456 commit c113099

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/libs/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "../targets"
2121

2222
[features]
2323
default = []
24-
doc = []
24+
docs = []
2525
# generated features
2626
Wdk = []
2727
Wdk_Foundation = ["Wdk"]

crates/libs/sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs
55
#![no_std]
66
#![doc(html_no_source)]
77
#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, clippy::all)]
8-
#![cfg_attr(not(feature = "doc"), doc(hidden))]
8+
#![cfg_attr(not(feature = "docs"), doc(hidden))]
99

1010
extern crate self as windows_sys;
1111
mod Windows;

crates/libs/windows/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ windows-interface = { path = "../interface", version = "0.52.0", optional = tru
2525

2626
[features]
2727
default = []
28-
doc = []
28+
docs = []
2929
deprecated = []
3030
implement = ["windows-implement", "windows-interface", "windows-core/implement"]
3131
# generated features

crates/libs/windows/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs
66

77
#![doc(html_no_source)]
88
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, clippy::all)]
9-
#![cfg_attr(not(feature = "doc"), doc(hidden))]
9+
#![cfg_attr(not(feature = "docs"), doc(hidden))]
1010

1111
extern crate self as windows;
1212
pub use Windows::*;

0 commit comments

Comments
 (0)