about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-04-03 16:59:13 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-04-03 16:59:13 -0700
commita7f0bfbda65d6ac2494d2270a96f45570dfb552e (patch)
tree59c020682f61deb1776bed785e5a71755d3f7b59
parent3044f5e2b64ae8c0ee726ec42f3d2a3faca9e77e (diff)
downloadrust-a7f0bfbda65d6ac2494d2270a96f45570dfb552e.tar.gz
rust-a7f0bfbda65d6ac2494d2270a96f45570dfb552e.zip
One more typo: dubug -> debug
-rw-r--r--doc/rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/rust.md b/doc/rust.md
index 1cb8b7053b5..d70fcded5e7 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -3261,7 +3261,7 @@ fn main() {
     error!("This is an error log")
     warn!("This is a warn log")
     info!("this is an info log")
-    debug!("This is a dubug log")
+    debug!("This is a debug log")
 }
 ```