Skip to content

Commit 5712b8c

Browse files
committed
deny missing docs
1 parent 7dc178d commit 5712b8c

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

scopegraphs-lib/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![deny(missing_docs)]
2+
13
pub mod completeness;
24
pub mod containers;
35
pub mod future_wrapper;

scopegraphs-macros/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
#![deny(missing_docs)]
2+
13
use crate::label::impl_label;
24
use crate::order::OrderInput;
35
use crate::regex::RegexInput;
46

57
use proc_macro::TokenStream;
8+
69
use syn::{parse_macro_input, DeriveInput};
710

811
mod label;

scopegraphs-regular-expressions/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![deny(missing_docs)]
2+
13
use proc_macro2::{LexError, TokenStream};
24
use thiserror::Error;
35

scopegraphs/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![deny(missing_docs)]
2+
13
pub use scopegraphs_lib::*;
24
pub use scopegraphs_macros::*;
35
pub use scopegraphs_regular_expressions::*;

0 commit comments

Comments
 (0)