Improve documentation for Input API

This commit is contained in:
Ethan P 2020-05-16 15:18:30 -07:00 committed by David Peter
parent 3eb704e016
commit a8d7141c4c
1 changed files with 1 additions and 1 deletions

View File

@ -310,6 +310,7 @@ impl<'a> PrettyPrinter<'a> {
}
}
/// An input source for the pretty printer.
pub struct Input<'a> {
input: BatInput<'a>,
}
@ -343,7 +344,6 @@ impl<'a> Input<'a> {
}
/// The description for the type of input (e.g. "File")
/// This defaults to "File" for files, and nothing for other inputs.
pub fn kind(mut self, kind: impl Into<String>) -> Self {
let kind = kind.into();
self.input