Commit 073fec4
authored
Rollup merge of #150208 - rustbot:docs-update, r=ehuss
Update books
## rust-lang/reference
15 commits in ec78de0ffe2f8344bd0e222b17ac7a7d32dc7a26..11f84ce150bed12af4331d2110c75590c7b46261
2025-12-19 04:11:52 UTC to 2025-12-16 18:21:13 UTC
- Document how closure capturing interacts with discriminant reads (rust-lang/reference#1837)
- operator-expr: remove stray word in footnote (rust-lang/reference#2118)
- await-expr: add a missing space (rust-lang/reference#2120)
- attributes: add missing punctuation to instruction_set (rust-lang/reference#2117)
- associated-items: add missing periods (rust-lang/reference#2116)
- Move tools into a consolidated cargo workspace (rust-lang/reference#2115)
- Unwrap all of the lexical chapters (rust-lang/reference#2113)
- Unwrap const_eval.md (rust-lang/reference#2112)
- Add section on expansion-time (early) name resolution (rust-lang/reference#2055)
- const_eval.md: add missing word (rust-lang/reference#2068)
- path-expr.md: use a more suitable punctuation (rust-lang/reference#2082)
- items: clarify label for type-aliases documentation (rust-lang/reference#2110)
- do not mix singular and plural (rust-lang/reference#2101)
- external-blocks: add missing "and" in list (rust-lang/reference#2111)
- conditional-compilation: add a space in `cfg.cfg_attr.attribute-list` (rust-lang/reference#2109)3 files changed
+19
-3
lines changed- .cargo/config.toml+1-1
- .github/workflows/main.yml+4-14
- .gitignore+2-2
- Cargo.lock+161-140
- Cargo.toml+19
- book.toml+2-2
- docs/authoring.md+3-3
- mdbook-spec/.gitignore-1
- mdbook-spec/CHANGELOG.md-13
- mdbook-spec/README.md-5
- mdbook-spec/src/grammar.rs-425
- mdbook-spec/src/grammar/render_markdown.rs-236
- mdbook-spec/src/grammar/render_railroad.rs-304
- src/attributes.md+1-1
- src/comments.md+5-15
- src/conditional-compilation.md+1-1
- src/const_eval.md+12-23
- src/expressions/await-expr.md+1-1
- src/expressions/operator-expr.md+3-3
- src/expressions/path-expr.md+1-1
- src/glossary.md+1
- src/identifiers.md+2-4
- src/input-format.md+2-4
- src/items.md+2-2
- src/items/associated-items.md+2-2
- src/items/enumerations.md+1-1
- src/items/external-blocks.md+1-1
- src/items/traits.md+1-1
- src/items/use-declarations.md+9-57
- src/keywords.md+5-12
- src/macros-by-example.md+107-4
- src/macros.md+12-2
- src/names/name-resolution.md+555-1
- src/names/namespaces.md+12-2
- src/procedural-macros.md+18
- src/tokens.md+52-162
- src/types/closure.md+222-44
- src/types/function-pointer.md+1-2
- src/whitespace.md+3-6
- style-check/.gitignore-1
- style-check/Cargo.lock-71
- theme/reference.css+1-1
- tools/diagnostics/Cargo.toml+6
- tools/diagnostics/README.md+3
- tools/diagnostics/src/lib.rs+51
- tools/grammar/Cargo.toml+10
- tools/grammar/README.md+3
- tools/grammar/src/lib.rs+250
- tools/grammar/src/parser.rs
- tools/mdbook-spec/Cargo.toml+6-5
- tools/mdbook-spec/LICENSE-APACHE
- tools/mdbook-spec/LICENSE-MIT
- tools/mdbook-spec/README.md+3
- tools/mdbook-spec/src/admonitions.rs
- tools/mdbook-spec/src/grammar.rs+188
- tools/mdbook-spec/src/grammar/render_markdown.rs+229
- tools/mdbook-spec/src/grammar/render_railroad.rs+295
- tools/mdbook-spec/src/lib.rs+4-53
- tools/mdbook-spec/src/main.rs
- tools/mdbook-spec/src/rules.rs
- tools/mdbook-spec/src/std_links.rs+1-1
- tools/mdbook-spec/src/test_links.rs
- tools/style-check/Cargo.toml+2-2
- tools/style-check/README.md+3
- tools/style-check/src/main.rs
- tools/xtask/Cargo.toml+6
- tools/xtask/README.md+3
- tools/xtask/src/main.rs+20-12
- xtask/.gitignore-1
- xtask/Cargo.lock-7
- xtask/Cargo.toml-5
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
320 | 320 | | |
321 | 321 | | |
322 | 322 | | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
323 | 327 | | |
324 | 328 | | |
325 | 329 | | |
| |||
464 | 468 | | |
465 | 469 | | |
466 | 470 | | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
467 | 481 | | |
468 | 482 | | |
469 | 483 | | |
| |||
774 | 788 | | |
775 | 789 | | |
776 | 790 | | |
777 | | - | |
| 791 | + | |
778 | 792 | | |
779 | 793 | | |
| 794 | + | |
| 795 | + | |
780 | 796 | | |
781 | 797 | | |
782 | 798 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
0 commit comments