Fix typo in SimpleStdoutLogger comment. (#1627)

This commit is contained in:
Benjamin Beyret 2023-10-12 16:03:38 +01:00 committed by GitHub
parent cb9ace52e1
commit 1b7e1da809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -737,7 +737,7 @@ pub static LIBAFL_STDERR_LOGGER: SimpleStderrLogger = SimpleStderrLogger::new();
#[cfg(feature = "std")]
pub static LIBAFL_STDOUT_LOGGER: SimpleStdoutLogger = SimpleStdoutLogger::new();
/// A simple logger struct that logs to stderr when used with [`log::set_logger`].
/// A simple logger struct that logs to stdout when used with [`log::set_logger`].
#[derive(Debug)]
#[cfg(feature = "std")]
pub struct SimpleStdoutLogger {}