about summary refs log tree commit diff
path: root/src/doc/guide.md
AgeCommit message (Collapse)AuthorLines
2014-09-15remove references to HM inferenceSteve Klabnik-6/+2
Fixes #17229.
2014-09-15properly annotate C code in the guideSteve Klabnik-3/+3
Without 'notrust,' we were getting a playpen link. Fixes #17228.
2014-09-13`rustc main.rs` generates main binary fileSantiago Pastorino-3/+3
2014-09-13These two lines are actually three.Markus Unterwaditzer-1/+1
2014-09-13doc: that felt like it needed a stronger break than what comma providesTshepang Lekhonkhobe-2/+2
Remove trailing whitespace while at it
2014-09-12auto merge of #17155 : steveklabnik/rust/dherman_fixes, r=brsonbors-224/+33
Fixing more suggestions from @dherman . I made them individual commits in case we want to discuss any of them further.
2014-09-11Replace the Tutorial with the Guide.Steve Klabnik-12/+3
The Guide isn't 100% perfect, but it's basically complete. It's certainly better than the tutorial is. Time to start pointing more people its way. I also just made it consistent to call all things 'guides' rather than tutorials. Fixes #9874. This is the big one. And two bugs that just go away. Fixes #14503. Fixes #15009.
2014-09-10don't say 'semantic'Steve Klabnik-8/+8
2014-09-10remove rich hickey loveSteve Klabnik-3/+3
2014-09-10Remove much of the modules section.Steve Klabnik-191/+2
This part can get _really_ confusing, and we want to make sure that people succeed in the guide. I plan on making a module guide in the future to replace the information here.
2014-09-10hello_world.rs -> main.rsSteve Klabnik-18/+19
2014-09-10dave hates jokes :wink:Steve Klabnik-4/+1
2014-09-09Be explicit with rustdoc.Steve Klabnik-15/+16
I missed some annotations, and some were in a different style.
2014-09-08guide: Remove reference to uninitialized bindingsSteve Klabnik-11/+2
There isn't a good way to fit this in, so let's just not mention it. Fixes #16792.
2014-09-07auto merge of #17019 : steveklabnik/rust/remove_compromise, r=thestingerbors-1/+1
@dherman doesn't like it :smile:
2014-09-05don't say compromiseSteve Klabnik-1/+1
@dherman doesn't like it :smile:
2014-09-05Fix formatting in the guide.Steve Klabnik-1/+1
Thanks @dherman.
2014-09-01doc: Fix spelling errors.Joseph Crail-1/+1
2014-08-30rollup merge of #16881 : cmr/guide-typoAlex Crichton-1/+1
2014-08-30rollup merge of #16852 : steveklabnik/desugar_destructureAlex Crichton-1/+1
2014-08-30rollup merge of #16849 : nhowell/patch-1Alex Crichton-5/+5
2014-08-30rollup merge of #16839 : treeman/issue-15358Alex Crichton-1/+1
2014-08-30rollup merge of #16833 : SebastianZaha/fix-guide-typoAlex Crichton-1/+1
2014-08-30rollup merge of #16832 : SebastianZaha/fix-inconsistent-version-numberingAlex Crichton-8/+8
2014-08-30rollup merge of #16807 : nham/guide_added_ownership_ruleAlex Crichton-6/+11
2014-08-30rollup merge of #16726 : tshepang/consistencyAlex Crichton-1/+1
2014-08-30rollup merge of #16721 : tshepang/convenienceAlex Crichton-3/+3
2014-08-30rollup merge of #16716 : tshepang/tempAlex Crichton-1/+1
2014-08-30doc: Add another restriction to the list of ownership rules.nham-6/+11
2014-08-30guide: function -> closure in explanation of closuresCorey Richardson-1/+1
2014-08-30doc: make docs buildTshepang Lekhonkhobe-1/+1
Addresses this comment: https://github.com/rust-lang/rust/pull/16721#issuecomment-53946624
2014-08-29desugar -> destructureSteve Klabnik-1/+1
wrong de- word.
2014-08-29Fix spelling mistakes in the guideNick Howell-5/+5
Also made some opinionated changes such as to prefer license over licence and judgment over judgement.
2014-08-29Tweak error message for use of a keyword in ident position.Jonas Hietala-1/+1
Closes #15358
2014-08-28Fix guide typo.Sebastian Zaha-1/+1
2014-08-28Cargo begins version number at 0.0.1 instead of 0.1.0.Sebastian Zaha-8/+8
2014-08-27auto merge of #16752 : MatejLach/rust/more_cargorun, r=steveklabnikbors-26/+21
Use cargo run as much as possible...
2014-08-27auto merge of #16724 : tshepang/rust/misleading, r=brsonbors-2/+1
We have to specify the module and the function name in the example where the module shares a crate with the executable as well, so remove the redundant (and potentially confusing) mention.
2014-08-26Use cargo run in more placesMatej Lach-26/+21
2014-08-26auto merge of #16720 : tshepang/rust/trailing-prompt, r=alexcrichtonbors-10/+0
because eyesore
2014-08-24auto merge of #16722 : tshepang/rust/trailing-spaces, r=pcwaltonbors-15/+15
2014-08-24doc: slight consistency fixTshepang Lekhonkhobe-1/+1
Others in this list are Capitalized, so do it here too.
2014-08-24doc: remove misleading/confusing infoTshepang Lekhonkhobe-2/+1
We have to specify the module and the function name in the example where the module shares a crate with the executable as well, so remove the redundant (and potentially confusing) mention.
2014-08-24doc: remove trailing spaces from GuideTshepang Lekhonkhobe-15/+15
2014-08-24doc: use the more convenient 'cargo run' commandTshepang Lekhonkhobe-2/+2
This lovely command has already been introduced, so let's take advantage of it.
2014-08-24doc: remove trailing shell promptsTshepang Lekhonkhobe-10/+0
because eyesore
2014-08-24doc: move misplaced commaTshepang Lekhonkhobe-3/+3
Also: * Remove unseeming repetition. * By now, the reader has already heard that Rust is safe by default, so reduce the overlong sentence, making it easier to read.
2014-08-24doc: add missing wordTshepang Lekhonkhobe-1/+1
2014-08-23Guide: Make add_three_times_four() publicDaniel Hofstetter-1/+2
2014-08-22auto merge of #16653 : steveklabnik/rust/module_wording, r=alexcrichtonbors-3/+5
@kimundi was a bit worried this was misleading.