1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-22 23:58:39 +02:00

Remove pub from traits exercise (#2677)

This commit is contained in:
Nicole L 2025-02-28 12:36:13 -08:00 committed by GitHub
parent 611306a172
commit e6bab6fd93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@
// ANCHOR: solution
// ANCHOR: setup
pub trait Logger {
trait Logger {
/// Log a message at the given verbosity level.
fn log(&self, verbosity: u8, message: &str);
}