Skip to content

Commit 44a7509

Browse files
authored
Enforce API documentation
Currently almost nobody documents added functions which is not good for the users of this library - but the API must have documentation. Let's warn about missing docs (deny would be even better).
1 parent 2bed5c9 commit 44a7509

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#![doc = include_str!("../README.md")]
22
#![cfg_attr(docsrs, feature(doc_cfg))]
33
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4+
#![warn(missing_docs)]
45

56
#[macro_use]
67
extern crate static_assertions;

0 commit comments

Comments
 (0)