Fix typo

Isaac Clayton created

Change summary

crates/plugin_runtime/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/plugin_runtime/README.md 🔗

@@ -281,7 +281,7 @@ use plugin::prelude::*;
 
 #[export]
 pub fn format(message: String) -> String {
-    format!("Cool Plugin says... "{}!", message)
+    format!("Cool Plugin says... '{}!'", message)
 }
 
 #[export]