about summary refs log tree commit diff
path: root/src/doc
AgeCommit message (Collapse)AuthorLines
2020-09-15Complete text about salsa base inputsSantiago Pastorino-5/+4
2020-09-15Add Salsa In More Depth lectureSantiago Pastorino-1/+4
2020-09-15Use latest patch release of mdBook and linkcheckCamelid-2/+2
2020-09-15Bump mdbook versionCamelid-1/+1
0.4.1 -> 0.4.3
2020-09-15Update booksEric Huss-0/+0
2020-09-15doc: platform-support.md: Move to tier 3Alistair Francis-1/+1
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
2020-09-15doc: platform-support.md: Document portAlistair Francis-0/+1
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
2020-09-14Update src/doc/rustdoc/src/lints.mdManish Goregaokar-2/+2
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-14Fix typoLeSeulArtichaut-1/+1
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
2020-09-14Make the HIR chapter point to the new chapter on IDsLeSeulArtichaut-36/+10
2020-09-14Apply suggestions from code reviewLeSeulArtichaut-2/+2
Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
2020-09-14Add a chapter on all the identifiers used through `rustc`LeSeulArtichaut-0/+64
2020-09-14Update based on @alex's PRJens Reidel-1/+1
2020-09-14Stabilize doc_alias featureGuillaume Gomez-39/+14
2020-09-13Fix lint name in docsManish Goregaokar-1/+1
2020-09-13Resolve some conflictsManish Goregaokar-1/+1
2020-09-13Update src/doc/rustdoc/src/linking-to-items-by-name.mdManish Goregaokar-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-13Update src/doc/rustdoc/src/linking-to-items-by-name.mdManish Goregaokar-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-13Fill out docs on intra-doc resolution failure lintManish Goregaokar-4/+39
2020-09-13Mention URL fragmentsManish Goregaokar-0/+9
2020-09-13Mention super/crate/self in docsManish Goregaokar-1/+1
2020-09-13Move intra-doc-links documentation out of unstable sectionManish Goregaokar-57/+57
2020-09-13Update `Visitor` and `Cursor` examplesDylan MacKenzie-4/+4
2020-09-13Line editsDylan MacKenzie-24/+29
2020-09-13Add missing link to `Engine`Dylan MacKenzie-0/+1
2020-09-13Initial draft of MIR dataflow framework docsDylan MacKenzie-0/+166
2020-09-13Link rustdoc lint docs to the rustdoc book.Eric Huss-0/+58
2020-09-13Auto-generate lint documentation.Eric Huss-1562/+36
2020-09-13make llvm_asm options more intenseLzu Tao-3/+3
2020-09-12correct attribute used hereMonadic Cat-1/+1
2020-09-12Address nitsJoshua Nelson-2/+2
2020-09-12Note that the default is 2015Joshua Nelson-1/+2
2020-09-12Document edition flag for UI testsJoshua Nelson-0/+1
2020-09-12Fix typoLeSeulArtichaut-1/+1
2020-09-12Hide `@rustdoc` implementation detailsLeSeulArtichaut-3/+4
2020-09-12Apply suggestions from code reviewLeSeulArtichaut-3/+3
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com> Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-12Update src/rustbot.mdTshepang Lekhonkhobe-1/+1
2020-09-12Update src/rustbot.mdTshepang Lekhonkhobe-1/+1
2020-09-12Update src/contributing.mdTshepang Lekhonkhobe-1/+1
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com>
2020-09-12Update src/contributing.mdTshepang Lekhonkhobe-1/+1
2020-09-12Add a chapter on useful `@rustbot` commandsLeSeulArtichaut-4/+76
2020-09-12Improve link and description of entry points in parser section (#876)Gus Wynn-2/+3
This seemed to be out of date!
2020-09-11Fix typoLeSeulArtichaut-1/+1
Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
2020-09-11Apply suggestions from code reviewLeSeulArtichaut-4/+5
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-11Clean up 'Contributing to Rust - Pull Requests'LeSeulArtichaut-36/+54
2020-09-10Fix other library commandsJoshua Nelson-1/+1
2020-09-10Fix incorrect docs about stagesJoshua Nelson-1/+1
`build library/core` builds the compiler, not just the standard library.
2020-09-10Rollup merge of #76555 - alilleybrinker:reword_trivial_casts_lint_doc, ↵Tyler Mandry-1/+2
r=steveklabnik Reword `trivial_casts` lint in rustc book to better explain what it does. The current description of the trivial casts lint under the "allowed by default" listing in the rustc book indicates the lint is for casts which may be removed, which is less clear than saying it's for casts which may be replaced by coercion (which is the wording used by the error message included in the doc). This commit changes the wording slightly to better describe what the lint does. This issue bit me in some recent code where I was attempting to convert a `Vec<SomeType>` to a `Vec<SomeTraitObject>`, and hit my project-wide `#![deny(trivial_casts)]` with `map(|o| Box::new(o) as TraitObject)`. I'd read the book docs for `trivial_casts` and was surprised by the error, as I took it to mean the cast ought to be removed (rather than replaced by ascription in this case). Removing the cast meant other code didn't compile, and I then found issues like #23742 and realized my misunderstanding.
2020-09-10Rollup merge of #76289 - arijit79:master, r=jyn514Tyler Mandry-0/+23
Add docs about crate level documentation support Wrote information about how to write documentation on the crate level in rhe rustdoc book
2020-09-10Add docs about crate level documentation supportarijit79-0/+23