1
Fork 0

libs: doc comments

This commit is contained in:
Alexander Regueiro 2019-02-09 22:16:58 +00:00
parent b87363e763
commit 99ed06eb88
102 changed files with 394 additions and 387 deletions

View file

@ -171,7 +171,7 @@ pub fn log_enabled() -> Option<PrintFormat> {
val
}
/// Print the symbol of the backtrace frame.
/// Prints the symbol of the backtrace frame.
///
/// These output functions should now be used everywhere to ensure consistency.
/// You may want to also use `output_fileline`.
@ -203,7 +203,7 @@ fn output(w: &mut dyn Write, idx: usize, frame: Frame,
w.write_all(b"\n")
}
/// Print the filename and line number of the backtrace frame.
/// Prints the filename and line number of the backtrace frame.
///
/// See also `output`.
#[allow(dead_code)]