This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 1539e98
authored
Unrolled build for rust-lang#123636
Rollup merge of rust-lang#123636 - rustbot:docs-update, r=ehuss
Update books
## rust-lang/book
23 commits in 19c40bfd2d57641d962f3119a1c343355f1b3c5e..3131aa4642c627a24f523c82566b94a7d920f68c
2024-04-05 22:09:59 UTC to 2024-03-27 18:14:05 UTC
- Correct the description of Listing 5-6 (rust-lang/book#3878)
- Minor text improvements (rust-lang/book#3790)
- Update full code reference main.rs in ch20-03 (rust-lang/book#3857)
- Make Note text in ch. 20 consistent with other notes (rust-lang/book#3876)
- Consistency fix: start note sentence with a capital (rust-lang/book#3652)
- Update README.md (rust-lang/book#3656)
- Update panic! formatting style for Guess example (rust-lang/book#3767)
- Small correction in ch13-01 (rust-lang/book#3780)
- Fix a wording typo in ch07 (rust-lang/book#3694)
- Fix a typo: remove an extra 's' from ch. 18.01 (rust-lang/book#3874)
- Remove redundant words (rust-lang/book#3672)
- Fix rust-lang#3703 (rust-lang/book#3704)
- Update loop to Result: 10 (rust-lang/book#3711)
- Added "--" between run and args on ch12-03-l12 (rust-lang/book#3726)
- Add maintenance time section in appendix-07-nightly-rust.md (rust-lang/book#3859)
- Update the link to the farsi translation repository (rust-lang/book#3839)
- Update README to use --locked for installing mdbook (rust-lang/book#3830)
- Reword "`union`s" to "a `union`" (rust-lang/book#3738)
- Fix two typos in 04-03 and 07-03 (rust-lang/book#3849)
- Fix typo in Chapter 7 Section 3 (rust-lang/book#3743)
- Improve ch03-05-control-flow collection looping wording (rust-lang/book#3758)
- Fix missing column separator (rust-lang/book#3855)
- Update compiler message (rust-lang/book#3856)
## rust-lang/edition-guide
3 commits in 98b33e9a441457b0a491fe1be90e7de64eafc3e5..eb3eb80e106d03250c1fb7c5666b1c8c59672862
2024-03-27 20:44:27 UTC to 2024-03-26 19:26:15 UTC
- some mdbook conveniences (rust-lang/edition-guide#297)
- typo (rust-lang/edition-guide#296)
- Clean up the `editions/index.md` page (rust-lang/edition-guide#294)
## rust-embedded/book
1 commits in 2e95fc2fd31d669947e993aa07ef10dc9828bee7..aa7d4b0b4653ddb47cb1de2036d090ec2ba9dab1
2024-04-05 07:42:54 UTC to 2024-04-05 07:42:54 UTC
- Dependencies: changed "qemu-arch-extra" to "qemu-system-arm" on arch section (rust-embedded/book#368)
## rust-lang/nomicon
2 commits in 6bc2415218d4dd0cb01433d8320f5ccf79c343a1..0d5f88475fe285affa6dbbc806e9e44d730797c0
2024-04-06 13:51:11 UTC to 2024-04-03 02:23:07 UTC
- chore: fix typo (rust-lang/nomicon#448)
- add link to reference about undefined behavior (rust-lang/nomicon#447)
## rust-lang/reference
3 commits in 984b36eca4b9293df04d5ba4eb5c4f77db0f51dc..55694913b1301cc809f9bf4a1ad1b3d6920efbd9
2024-04-03 21:31:14 UTC to 2024-04-01 19:56:13 UTC
- Add the `#[diagnostic]` attribute namespace and the `#[diagnostic::on_unimplemented]` feature to the reference (rust-lang/reference#1449)
- type-layout: be more specific about 32-bit alignments (rust-lang/reference#1393)
- Fix clippy warning in procedural macro example (rust-lang/reference#1488)
## rust-lang/rust-by-example
1 commits in 7601e0c5ad29d5bd3b518700ea63fddfff5915a7..60d34b5fd33db1346f9aabfc0c9d0bda6c8e42be
2024-04-07 13:00:53 UTC to 2024-04-07 13:00:53 UTC
- chore: fix some typos (rust-lang/rust-by-example#1833)
## rust-lang/rustc-dev-guide
11 commits in ffa246b..b77a34b
2024-04-06 20:41:09 UTC to 2024-03-27 08:49:05 UTC
- Explicitly mention compiletest directives are supported in rmake.rs (rust-lang/rustc-dev-guide#1949)
- Add docs for sharded descriptions (rust-lang/rustc-dev-guide#1959)
- Add basic docs for the new `aux-bin` header (rust-lang/rustc-dev-guide#1942)
- Add needs-threads header command (rust-lang/rustc-dev-guide#1943)
- Fix some broken links under bootstrapping. (rust-lang/rustc-dev-guide#1958)
- Replace -Zno-parallel-llvm with -Zno-parallel-backend (rust-lang/rustc-dev-guide#1957)
- Rewrite the `Parameter Environments` chapter (rust-lang/rustc-dev-guide#1953)
- Add quickstart for how to build and run the compiler (rust-lang/rustc-dev-guide#1951)
- Delete length check (rust-lang/rustc-dev-guide#1952)
- Fix some comments (rust-lang/rustc-dev-guide#1950)
- add opaque-types-region-inference-restrictions (rust-lang/rustc-dev-guide#1948)File tree
7 files changed
+7
-7
lines changed- src/doc
7 files changed
+7
-7
lines changed- README.md+2-2
- listings/ch09-error-handling/listing-09-13/src/main.rs+1-1
- listings/ch11-writing-automated-tests/listing-11-08/src/lib.rs+1-1
- listings/ch11-writing-automated-tests/listing-11-09/src/lib.rs+2-4
- listings/ch11-writing-automated-tests/no-listing-08-guess-with-bug/src/lib.rs+1-1
- listings/ch11-writing-automated-tests/no-listing-09-guess-with-panic-msg-bug/src/lib.rs+2-4
- listings/ch12-an-io-project/listing-12-12/output.txt+1-1
- listings/ch13-functional-features/listing-13-08/output.txt+1-1
- listings/ch13-functional-features/listing-13-08/src/main.rs+1-1
- listings/ch16-fearless-concurrency/listing-16-15/src/main.rs+1-1
- listings/ch20-web-server/listing-20-25/src/main.rs+20-26
- listings/ch20-web-server/no-listing-07-final-code/src/main.rs+20-26
- src/appendix-02-operators.md+1-1
- src/appendix-03-derivable-traits.md+1-1
- src/appendix-06-translation.md+1-1
- src/appendix-07-nightly-rust.md+6
- src/ch03-05-control-flow.md+1-1
- src/ch04-03-slices.md+1-1
- src/ch05-01-defining-structs.md+1-1
- src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md+2-2
- src/ch08-01-vectors.md+1-1
- src/ch11-01-writing-tests.md+1-1
- src/ch12-05-working-with-environment-variables.md+1-1
- src/ch13-01-closures.md+2-2
- src/ch15-02-deref.md+1-1
- src/ch18-02-refutability.md+1-1
- src/ch19-01-unsafe-rust.md+1-1
- src/ch20-02-multithreaded.md+1-1
Submodule embedded-book updated 1 file
Submodule rustc-dev-guide updated 26 files
- .github/workflows/ci.yml-6
- README.md-19
- ci/lengthcheck.sh-43
- src/SUMMARY.md+7-1
- src/appendix/glossary.md+1-1
- src/backend/debugging.md+1-1
- src/backend/libs-and-metadata.md+1-1
- src/borrow_check/opaque-types-region-inference-restrictions.md+264
- src/building/bootstrapping/what-bootstrapping-does.md+4-4
- src/building/how-to-build-and-run.md+5
- src/building/quickstart.md+64
- src/building/suggested.md+1-1
- src/compiler-src.md+1-1
- src/contributing.md+3-3
- src/git.md+1-1
- src/overview.md+1-1
- src/param_env.md-69
- src/param_env/param_env_acquisition.md+44
- src/param_env/param_env_construction_internals.md+83
- src/param_env/param_env_summary.md+18
- src/param_env/param_env_what_is_it.md+60
- src/rustdoc-internals/search.md+148-36
- src/solve/invariants.md+1-1
- src/tests/compiletest.md+9-1
- src/tests/headers.md+1
- src/what-does-early-late-bound-mean.md+1-1
0 commit comments