about summary refs log tree commit diff
path: root/src/doc
AgeCommit message (Collapse)AuthorLines
2020-06-11Cleanup docsAmanieu d'Antras-2/+4
2020-06-10Clean up the paragraph about aliases for pinging the notification groups (#743)LeSeulArtichaut-3/+7
* Clean up the paragraph about aliases for pinging the notification groups * Add windows and arm command invocations Co-authored-by: Santiago Pastorino <spastorino@gmail.com> Co-authored-by: Santiago Pastorino <spastorino@gmail.com>
2020-06-10Only build master branch on pushWho? Me?!-0/+5
2020-06-10Include "Lint" in the title of the diagnostics chapter (#742)LeSeulArtichaut-2/+2
2020-06-10Rollup merge of #73149 - cuviper:awailable, r=steveklabnikDylan DPC-1/+1
typo: awailable -> available
2020-06-09complete the ICE-breaker => notification group renameNiko Matsakis-21/+23
2020-06-09add the ARM notification group (#740)Niko Matsakis-0/+24
2020-06-09Rebrand ICE-breakers, introduce Windows notification group (#739)Niko Matsakis-7/+42
* rename ice-breakers to the more general notification-group also less confusing * add windows notification group * rebrand LLVM ICE-breakers as a "notification group" * include the link to example windows PR
2020-06-08typo: awailable -> availableJosh Stone-1/+1
2020-06-08Rollup merge of #73143 - ehuss:update-books, r=ehussDylan DPC-0/+0
Update books ## nomicon 3 commits in d1517d4e3f29264c5c67bce2658516bb5202c800..bfe1ab96d717d1dda50e499b360f2e2f57e1750a 2020-05-12 13:47:00 -0400 to 2020-06-05 13:19:42 -0400 - Clarify that str data must still be initialized - Remove language-level UB for non-UTF-8 str - fix Nomicon transmute UB ## reference 5 commits in becdca9477c9eafa96a4eea5156fe7a2730d9dd2..5d40ba5c2515caffa7790cda621239dc21ef5a72 2020-05-21 21:08:02 +0100 to 2020-06-06 20:25:36 -0700 - Add some links to Disambiguating Function Calls. (rust-lang-nursery/reference#829) - change bash to sh as shell code blocks language indentifier (rust-lang-nursery/reference#827) - Fix sentence mistake in array-expr.md (rust-lang-nursery/reference#826) - removed the word "Second" form the beginning of the 2nd list item and labelled it as `2` (rust-lang-nursery/reference#822) - Update fn-like proc-macro invocation restrictions. (rust-lang-nursery/reference#816) ## book 14 commits in e8a4714a9d8a6136a59b8e63544e149683876e36..30cd9dfe71c446de63826bb4472627af45acc9db 2020-05-25 10:29:27 -0500 to 2020-06-07 23:07:19 -0500 - Unnecessarily long type name in Ch 13 (rust-lang/book#2362) - Tweak example in chapter 10 (rust-lang/book#2363) - Mention that to_lowercase isn't perfect (rust-lang/book#2364) - fix typo in CONTRIBUTING.md (rust-lang/book#2360) - Link German translation in appendix F (rust-lang/book#2347) - Updates wording on Box example (rust-lang/book#2332) - fix: match 15-24 with 15-18 (rust-lang/book#2324) - Reword ch01-03 recap paragraph (rust-lang/book#2305) - Remove some confusing wording. (rust-lang/book#2358) - Clarify some wording a bit (rust-lang/book#2357) - Update ch12-05 PowerShell note (rust-lang/book#2348) - text -&gt; console (rust-lang/book#2352) - Improve wording around drop (rust-lang/book#2350) - Make some statements about crates more correct (rust-lang/book#2349) ## edition-guide 1 commits in 0a8ab5046829733eb03df0738c4fafaa9b36b348..82bec5877c77cfad530ca11095db4456d757f668 2020-05-18 08:34:23 -0500 to 2020-06-03 08:56:02 -0500 - Add stuff for Rust 1.33 (rust-lang/edition-guide#214)
2020-06-08Update booksEric Huss-0/+0
2020-06-08Document needs-* compiletest directivesTomasz Miąsko-0/+7
2020-06-08Rollup merge of #73001 - ilya-bobyr:master, r=dtolnayRalf Jung-0/+45
Free `default()` forwarding to `Default::default()` It feels a bit redundant to have to say `Default::default()` every time I need a new value of a type that has a `Default` instance. Especially so, compared to Haskell, where the same functionality is called `def`. Providing a free `default()` function that forwards to `Default::default()` seems to improve the situation. The trait is still there, so if someone wants to be explicit and to say `Default::default()` - it still works, but if imported as `std::default::default;`, then the free function reduces typing and visual noise.
2020-06-08Rollup merge of #72615 - jschwe:fix-Zprofile-documentation, r=steveklabnikRalf Jung-1/+7
Fix documentation example for gcov profiling closes #72546 Improves the documentation for the unstable Rustflag `-Zprofile` by: - stating that Incremental compilation must be turned off. - Adding the other `RUSTFLAGS` that should/need to be turned on (taken from [grcov documentation](https://github.com/mozilla/grcov#example-how-to-generate-gcda-files-for-a-rust-project)) - Mentioning `RUSTC_WRAPPER` to prevent everything getting instrumented. r? @steveklabnik
2020-06-07unstable book: default_free_fnIlya Bobyr-0/+45
2020-06-06doc/rustdoc: Fix incorrect external_doc feature flagSean Wilson-1/+1
2020-06-05do a rebase before testing (#737)Who? Me?!-0/+1
2020-06-05Add a bit about various type system concepts (#697)Who? Me?!-2/+253
* add a bit on dataflow analysis * add a bit on quanitification * add a bit on debruijn index * add a bit on early and late bound params * add missing link * Typos Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com> * clarify dataflow example * fix formatting * fix typos * Typos Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com> * fix errors in background * remove dup material and make early/late intro short * adjust intro * Niko's intro Co-authored-by: Niko Matsakis <niko@alum.mit.edu> Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com> Co-authored-by: Niko Matsakis <niko@alum.mit.edu>
2020-06-05update conventions (#735)Bastian Kauschke-11/+12
* update conventions * typo Co-authored-by: Santiago Pastorino <spastorino@gmail.com> Co-authored-by: Santiago Pastorino <spastorino@gmail.com>
2020-06-05bracesBastian Kauschke-3/+3
2020-06-05wordsBastian Kauschke-4/+3
2020-06-05Fix link (#734)Who? Me?!-3/+3
2020-06-03Add more info on useful workflows (#727)LeSeulArtichaut-5/+64
* Add more info on useful workflows * Apply suggestions from code review Co-authored-by: mark-i-m <mark-i-m@users.noreply.github.com> Co-authored-by: spastorino <spastorino@gmail.com> Co-authored-by: mark-i-m <mark-i-m@users.noreply.github.com> Co-authored-by: spastorino <spastorino@gmail.com>
2020-06-03Updated documentation for Control Flow GuardAndrew Paverd-7/+31
2020-06-03Doc: unstable book - profile.md: improve wordingJonathan Schwender-3/+4
- mention `--target` flag excludes RUSTFLAGS passing to build scripts and proc macros
2020-06-02Make travis badge link to travisWho? Me?!-1/+1
2020-06-02Update .travis.ymlWho? Me?!-1/+1
2020-06-02Playing with travis imagesWho? Me?!-0/+1
2020-05-30Update lint declaration example (#713)Yuki Okushi-20/+30
2020-05-29Rollup merge of #72439 - westernmagic:master, r=AmanieuRalf Jung-0/+11
NVPTX support for new asm! This PR implements the new `asm!` syntax for the `nvptx64-nvidia-cuda` target. r? @Amanieu
2020-05-29Document more //ignore-X test headersTom Eccles-0/+2
2020-05-29Document remote testingTom Eccles-10/+74
2020-05-30Document `RUSTFLAGS_STAGE_` bootstrap environment variables (#728)LeSeulArtichaut-0/+10
* Document `RUSTFLAGS_STAGE_` * Fix typos Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
2020-05-28Update src/tests/adding.mdChris Simpkins-1/+1
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
2020-05-28add documentation of UI test error annotation substring supportChris Simpkins-1/+4
2020-05-29Expand error annotations section with examples (#724)Chris Simpkins-3/+64
* expand error annotations section with examples Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
2020-05-28Remove rustc-ux-guidelinesEric Huss-90/+0
2020-05-27Clarify lint vs fixed diagnostic.Eric Huss-0/+17
2020-05-27Updates from review.Eric Huss-11/+19
2020-05-27Apply suggestions from code reviewEric Huss-2/+2
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com> Co-authored-by: Chris Simpkins <git.simpkins@gmail.com>
2020-05-27Add some guidelines on diagnostics.Eric Huss-1/+159
2020-05-27Apply suggestions from code reviewLeSeulArtichaut-1/+1
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
2020-05-27Fix typoLeSeulArtichaut-1/+1
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
2020-05-27Add definition of `niche` to the glossaryLeSeulArtichaut-0/+1
2020-05-27Move CLI to part 3.Eric Huss-1/+1
2020-05-27Apply suggestions from code reviewEric Huss-2/+2
Co-authored-by: Chris Simpkins <git.simpkins@gmail.com> Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
2020-05-27Add some guidelines on the CLI.Eric Huss-0/+30
2020-05-28It looks like the high-level-overview was renamed (#721)Michael Bryan-1/+1
2020-05-27Add section for debugging rustc type layouts (#720)LeSeulArtichaut-0/+59
2020-05-26Rename `upvars` query to `upvars_mentioned`Yuki Okushi-2/+3