diff --git a/src/lib.rs b/src/lib.rs index af8a6b3..8306d16 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,7 @@ impl Contract { // Public method - accepts a greeting, such as "howdy", and records it pub fn set_greeting(&mut self, greeting: String) { - log!("Saving greeting: {greeting}"); + log!("Saving new greeting: {greeting}"); self.greeting = greeting; } }