Explorar o código

Clarify README example by adding a more descriptive print message

Taylor Cramer %!s(int64=8) %!d(string=hai) anos
pai
achega
a4bc061a97
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -63,7 +63,7 @@ You can set custom OOM handlers, by:
 extern crate ralloc;
 
 fn my_handler() -> ! {
-    println!("Oh no. Blame the Mexicans.");
+    println!("Oh no! You ran out of memory.");
 }
 
 fn main() {
@@ -80,7 +80,7 @@ You can override the global OOM handler for your current thread. Enable the `thr
 extern crate ralloc;
 
 fn my_handler() -> ! {
-    println!("Oh no. Blame the Mexicans.");
+    println!("Oh no! You ran out of memory.");
 }
 
 fn main() {