From d6ae1fbfb7e9380fcb32a35198a905ec89e0c50c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 31 Jul 2018 23:08:14 +0200 Subject: [PATCH] attention: Document this module. --- src/attention.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/attention.rs b/src/attention.rs index 20f79bae..59f8aa7a 100644 --- a/src/attention.rs +++ b/src/attention.rs @@ -4,7 +4,12 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. -generate_empty_element!(Attention, "attention", ATTENTION); +#![deny(missing_docs)] + +generate_empty_element!( + /// Requests the attention of the recipient. + Attention, "attention", ATTENTION +); #[cfg(test)] mod tests {