about summary refs log tree commit diff
path: root/src/doc/trpl/README.md
AgeCommit message (Collapse)AuthorLines
2015-11-19src/doc/trpl -> src/doc/bookSteve Klabnik-48/+0
The book was located under 'src/doc/trpl' because originally, it was going to be hosted under that URL. Late in the game, before 1.0, we decided that /book was a better one, so we changed the output, but not the input. This causes confusion for no good reason. So we'll change the source directory to look like the output directory, like for every other thing in src/doc.
2015-11-05Remove short intro from READMESteve Klabnik-153/+3
Originally, this was my 30 minute introduction, and we eventually made it the opener to the book. But as #25918 has shown, the example I use here has some issues. The good news is that Rust makes heap allocation syntatically expensive, but the bad news is that that means showing equivalent programs from Rust and other languages is difficult. After thinking about it, I'm not sure this section is pulling its weight, and since it has problems, I'd rather just pull it than try to re-write it right now. I think the book is fine without it. FIxes #25918
2015-10-10Auto merge of #28930 - steveklabnik:update_pr, r=steveklabnikbors-24/+23
https://github.com/rust-lang/rust/pull/27813#issuecomment-146842041
2015-10-09Some tidying upJonathan Hansford-17/+17
Improving the use of 2nd and 3rd person Adding a few contractions to make the text less formal Tidying up some notes Providing a little bit more clarification for Windows users
2015-10-092nd to 3rd personJonathan Hansford-20/+19
Replacing all references to the 2nd person with references to the 3rd person (excluding `authors = [ "Your name <you@example.com>" ]` and `file:///home/yourname/projects/hello_world` in `hello-cargo.md`)
2015-10-09Fix GitHubYoshito Komatsu-1/+1
2015-09-04trpl: Rename 'academic research' to 'bibliography'. Add some new links.Brian Anderson-2/+2
2015-08-09Use https URLs to refer to rust-lang.org where appropriate.Eli Friedman-1/+1
Also fixes a few outdated links.
2015-05-29trpl: eight sections, not sevenNick Howell-1/+1
2015-05-21Introduction vector example elements counting fixdmgawel-2/+2
Earlier created vector `["Hello", "world"]` has two elements and we try to add a third element.
2015-05-13TRPL: Fix a broken link to 'move semantics'Michael Park-1/+1
2015-05-02=BG= minor: add link to book source filesBrendan Graetz-0/+5
- I found n error in the book, before contributing the patch to fix it, I had to find where they were hosted - It took me quite look to find where within the rust-lang *organisation* it was!
2015-05-01Correct typo in introductionJordan Humphreys-1/+1
Correct 'danging' to 'dangling'.
2015-04-27Adjusted intro error to match codeDominic van Berkel-1/+1
The error in the Brief Introduction shows the problematic line as "x.push(4)", while the example code uses a vector of strings.
2015-04-25A number of spell-checking corrections.Przemysław Wesołek-1/+1
2015-04-21Add research to README of TRPLSteve Klabnik-0/+2
This section was added but the list wasn't updated.
2015-04-20Fix small typo in TRPL introSteve Klabnik-1/+1
2015-04-11Fix readme doctest (fixup #24239)Manish Goregaokar-3/+3
2015-04-09TRPL: new introductionSteve Klabnik-25/+178
2015-04-05Documentation fixMark Mossberg-1/+1
Correct mistyped comma, and slightly improve sentence.
2015-03-27rollup merge of #23764: tshepang/no-guessing-anymoreAlex Crichton-2/+1
2015-03-27book: there is no guessing game anymore, so remove references to itTshepang Lekhonkhobe-2/+1
2015-03-26New section of the book: nightly rustSteve Klabnik-3/+8
Now that feature flags are only on nightly, it's good to split this stuff out.
2015-01-12Link to sections in the book's README.mdSteve Klabnik-3/+3
Fixes #20852
2015-01-10Merge pull request #20849 from scode/scode/fix-book-typobors-1/+1
Fix typo in documentation. Reviewed-by: sfackler
2015-01-09Fix typo in documentation.Peter Schuller-1/+1
2015-01-09Fix a couple wording issues in trpl bookNathan Stoddard-1/+1
2015-01-08"The Rust Programming Language"Steve Klabnik-0/+35
This pulls all of our long-form documentation into a single document, nicknamed "the book" and formally titled "The Rust Programming Language." A few things motivated this change: * People knew of The Guide, but not the individual Guides. This merges them together, helping discoverability. * You can get all of Rust's longform documentation in one place, which is nice. * We now have rustbook in-tree, which can generate this kind of documentation. While its style is basic, the general idea is much better: a table of contents on the left-hand side. * Rather than a almost 10,000-line guide.md, there are now smaller files per section.