Lint updates: introduce documentation strings

*  correctemitted missind strings emitted via 'missing_docs' macro

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2021-06-11 16:08:33 +02:00
parent 05f6e13dae
commit 90869c8305
14 changed files with 227 additions and 23 deletions

View File

@@ -22,15 +22,15 @@ widget!(
/// This identifier is checked agains a map of valid policy codes.
// PolicycheckView<PolicycheckState>: KeyDownHandler {
PolicycheckView<PolicycheckState> {
// holds the language code
/// Holds the language code
lang: String,
// provides a struct with `PolicyCheck` members
/// Provides a struct with `PolicyCheck` members
policy_check: PolicyCheck,
// holds number of imported data
/// Holds number of imported data
policy_data_count: u32,
// holds the title string
/// Holds the title string
policy_check_title: String,
// widget entity that will receive the message
/// Widget entity that will receive the message
target: u32
}
);