1
Fork 0

Fix misaligned carot in guide

This commit is contained in:
Eduardo Bautista 2014-10-18 01:34:50 -05:00
parent 2c0f87610d
commit cef0b55c78

View file

@ -482,7 +482,7 @@ but it will still print "Hello, world!":
Compiling hello_world v0.0.1 (file:///home/you/projects/hello_world) Compiling hello_world v0.0.1 (file:///home/you/projects/hello_world)
src/main.rs:2:9: 2:10 warning: unused variable: `x`, #[warn(unused_variable)] on by default src/main.rs:2:9: 2:10 warning: unused variable: `x`, #[warn(unused_variable)] on by default
src/main.rs:2 let x: int; src/main.rs:2 let x: int;
^ ^
``` ```
Rust warns us that we never use the variable binding, but since we never use it, Rust warns us that we never use the variable binding, but since we never use it,