Re: [rust-dev] Bug in the guide?

2014-09-17 Thread Pablo Brasero Moreno
Rust community living up to its fame of awesomeness! Thanks for that. The pull request is already on the queue. On 17 September 2014 20:58, Tim Joseph Dumol wrote: > Hi Pablo, > > You can submit a pull request at the Rust Github repo ( > https://github.com/rust-lang/rust). The relevant file is

Re: [rust-dev] Bug in the guide?

2014-09-17 Thread Tim Joseph Dumol
Hi Pablo, You can submit a pull request at the Rust Github repo ( https://github.com/rust-lang/rust). The relevant file is at `/src/doc/ guide.md`: https://github.com/rust-lang/rust/blob/master/src/doc/guide.md. Cheers, Tim Dumol On Thu, Sep 18, 2014 at 3:55 AM, Steve Klabnik wrote: > Yup, th

Re: [rust-dev] Bug in the guide?

2014-09-17 Thread Steve Klabnik
Yup, that leading std:: in main shouldn't be there. ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

[rust-dev] Bug in the guide?

2014-09-17 Thread Pablo Brasero Moreno
Hello all. I just subscribed to this list only because I found something odd on the Rust Guide, and couldn't find a better place to send feedback. It's about section 13 "Standard Input". The first example code is the following: use std::io; fn main() { println!("Type something!");