This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 56aa8b9
authored
Unrolled build for rust-lang#129617
Rollup merge of rust-lang#129617 - rustbot:docs-update, r=ehuss
Update books
## rust-lang/book
4 commits in 04bc1396bb857f35b5dda1d773c9571e1f253304..e7d217be2a75ef1753f0988d6ccaba4d7e376259
2024-08-14 01:19:47 UTC to 2024-08-13 16:51:00 UTC
- Backport/forward port ch12 (rust-lang/book#4008)
- Found some more things to fix in ch7; I forgot to update the snapshot (rust-lang/book#4007)
- Remove redundant sentence. Send to nostarch (rust-lang/book#4006)
- Fix: typo (rust-lang/book#4003)
## rust-lang/edition-guide
5 commits in aeeb287d41a0332c210da122bea8e0e91844ab3e..eeba2cb9c37ab74118a4fb5e5233f7397e4a91f8
2024-08-19 23:28:06 UTC to 2024-08-15 15:12:33 UTC
- 2024: Add rustdoc combined doctests (rust-lang/edition-guide#320)
- Update for unsafe attributes stabilization (rust-lang/edition-guide#319)
- 2024: Add macro-fragment-specifiers. (rust-lang/edition-guide#312)
- Fix deprecated_safe_2024 link (rust-lang/edition-guide#317)
- Add 2024 unsafe functions (rust-lang/edition-guide#304)
## rust-embedded/book
1 commits in 019f3928d8b939ec71b63722dcc2e46330156441..ff5d61d56f11e1986bfa9652c6aff7731576c37d
2024-08-20 07:26:19 UTC to 2024-08-20 07:26:19 UTC
- Use aligned address to demonstrate HardFault (rust-embedded/book#374)
## rust-lang/nomicon
1 commits in 6ecf95c5f2bfa0e6314dfe282bf775fd1405f7e9..14649f15d232d509478206ee9ed5105641aa60d0
2024-08-14 14:49:09 UTC to 2024-08-14 14:49:09 UTC
- CI: Switch to merge queue (rust-lang/nomicon#459)
## rust-lang/reference
14 commits in 62cd0df95061ba0ac886333f5cd7f3012f149da1..0668397076da350c404dadcf07b6cbc433ad3743
2024-08-11 21:06:12 +0000 to 2024-08-27 21:47:20 +0000
- Update enum.md (rust-lang/reference#1354)
- Be consistent about how "Edition differences" is capitalized (rust-lang/reference#1586)
- Sync denied lints with upstream (rust-lang/reference#1589)
- const_eval: update for const-fn float stabilization (rust-lang/reference#1566)
- Add spec identifier syntax to destructors.md (rust-lang/reference#1571)
- Say that `pub(in path)` can't depend on `use` statements (rust-lang/reference#1559)
- bytes inside implicitly const-promoted expressions are immutable (rust-lang/reference#1554)
- Tweak `repr(transparent)` to mention requiring *at most* one non-1-ZST (rust-lang/reference#1568)
- operator expressions: add &raw (rust-lang/reference#1567)
- Rewrite the automatic std link translation, and switch to automatic links (rust-lang/reference#1578)
- Add some basic docs for unsafe attrs (rust-lang/reference#1539)
- don't capitalize Undefined Behavior (rust-lang/reference#1575)
- add the `const` operand to docs for inline assembly (rust-lang/reference#1556)
- Typo: 'a' to 'an' in type-coercions.md (rust-lang/reference#1572)
## rust-lang/rust-by-example
1 commits in 8f94061936e492159f4f6c09c0f917a7521893ff..859786c5bc99301bbc22fc631a5c2b341860da08
2024-08-26 10:30:48 UTC to 2024-08-26 10:30:48 UTC
- Update primitives.md with examples (rust-lang/rust-by-example#1878)
## rust-lang/rustc-dev-guide
7 commits in 43d8378..fa928a6
2024-08-26 14:46:50 UTC to 2024-08-12 21:07:49 UTC
- Fix x.py reference (rust-lang/rustc-dev-guide#2049)
- Update `stabilization_guide.md` (rust-lang/rustc-dev-guide#2034)
- Explain the internal `#[rustc_*]` TEST attributes used for debugging and inside tests (rust-lang/rustc-dev-guide#2046)
- missing char (rust-lang/rustc-dev-guide#2047)
- Replace direct http links to rustc-dev-guide.rust-lang.org (rust-lang/rustc-dev-guide#2044)
- Update index.html, 39. The MIR: fix typo (rust-lang/rustc-dev-guide#2043)
- Update LLVM docs (rust-lang/rustc-dev-guide#2039)File tree
8 files changed
+8
-7
lines changed- src
- doc
- tools/rustbook
8 files changed
+8
-7
lines changed- nostarch/chapter07.md+66-69
- nostarch/chapter12.md+375-308
- packages/tools/src/bin/link2print.rs+7-21
- src/ch03-05-control-flow.md+1-1
- src/ch07-01-packages-and-crates.md+4-7
- src/ch12-00-an-io-project.md+7-9
- src/ch12-01-accepting-command-line-arguments.md+8-8
- src/ch12-02-reading-a-file.md+8-7
- src/ch12-03-improving-error-handling-and-modularity.md+30-31
- src/ch12-04-testing-the-librarys-functionality.md+27-27
- src/ch12-05-working-with-environment-variables.md+23-23
- src/ch12-06-writing-to-stderr-instead-of-stdout.md+5-4
Submodule embedded-book updated 1 file
- README.md+5-3
- book.toml+1-1
- docs/authoring.md+10-1
- mdbook-spec/Cargo.lock+1
- mdbook-spec/Cargo.toml+2
- mdbook-spec/src/lib.rs+6-1
- mdbook-spec/src/std_links.rs+240-119
- src/abi.md+18-3
- src/attributes.md+13-1
- src/attributes/codegen.md+1-3
- src/attributes/derive.md-2
- src/attributes/diagnostics.md-1
- src/attributes/testing.md+3-3
- src/behavior-considered-undefined.md+8-9
- src/conditional-compilation.md-3
- src/const_eval.md+7-23
- src/crates-and-source-files.md+4-4
- src/destructors.md+64-6
- src/expressions.md+2-3
- src/expressions/array-expr.md+2-2
- src/expressions/await-expr.md+8-8
- src/expressions/block-expr.md-2
- src/expressions/call-expr.md+2-5
- src/expressions/literal-expr.md+1-8
- src/expressions/method-call-expr.md+2-2
- src/expressions/operator-expr.md+14-16
- src/inline-assembly.md+9-5
- src/input-format.md-3
- src/interior-mutability.md-5
- src/introduction.md+3-3
- src/items/associated-items.md+1-1
- src/items/enumerations.md+1-2
- src/items/functions.md+1-1
- src/items/static-items.md+1-1
- src/items/unions.md+2-4
- src/macros-by-example.md+3-3
- src/names/preludes.md+3-16
- src/paths.md+1-1
- src/patterns.md+1-1
- src/procedural-macros.md+6-7
- src/runtime.md+3-3
- src/special-types-and-traits.md+10-21
- src/tokens.md+4-4
- src/type-coercions.md+3-3
- src/type-layout.md+12-13
- src/types/array.md-1
- src/types/boolean.md+1-2
- src/types/closure.md-3
- src/types/enum.md+1-1
- src/types/function-item.md-3
- src/types/pointer.md+1-3
- src/types/textual.md+3-3
- src/types/trait-object.md+2-2
- src/types/union.md-1
- src/unsafe-keyword.md+9-3
- src/unsafety.md+2
- src/visibility-and-privacy.md+4-3
Submodule rustc-dev-guide updated 12 files
- src/backend/updating-llvm.md+71-27
- src/borrow_check/opaque-types-region-inference-restrictions.md+1-1
- src/building/suggested.md+1-1
- src/compiler-debugging.md+68-30
- src/mir/index.md+1-1
- src/opaque-types-impl-trait-inference.md+2-2
- src/overview.md+2-2
- src/param_env/param_env_construction_internals.md+2-2
- src/solve/opaque-types.md+1-1
- src/stabilization_guide.md+6-6
- src/tests/intro.md+1-1
- src/tests/ui.md+13
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
690 | 690 | | |
691 | 691 | | |
692 | 692 | | |
| 693 | + | |
693 | 694 | | |
694 | 695 | | |
695 | 696 | | |
| |||
0 commit comments