Commit dbb40f4
authored
Unrolled build for #150529
Rollup merge of #150529 - rustbot:docs-update, r=ehuss
Update books
## rust-lang/reference
21 commits in ec78de0ffe2f8344bd0e222b17ac7a7d32dc7a26..6363385ac4ebe1763f1e6fb2063c0b1db681a072
2025-12-15 16:17:43 +0000 to 2025-12-31 21:12:35 +0000
- Remove cargo workspace inheritance (rust-lang/reference#2129)
- identifiers: bump Unicode from 16 to 17 (rust-lang/reference#2071)
- Fix alternation order of lexical rules (rust-lang/reference#2126)
- Fix overly greedy digits (rust-lang/reference#2124)
- Clarify UNICODE_ESCAPE valid token value (rust-lang/reference#2123)
- Fix ambiguity of RESERVED_RAW_IDENTIFIER (rust-lang/reference#2122)
- 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)
## rust-lang/rust-by-example
2 commits in 7d21279e40e8f0e91c2a22c5148dd2d745aef8b6..2e02f22a10e7eeb758e6aba484f13d0f1988a3e5
2025-12-21 08:47:57 UTC to 2025-12-21 08:46:33 UTC
- docs(comments): improve readability and formatting (rust-lang/rust-by-example#1981)
- Fix HOF.MD sum of odd squares algorithm (rust-lang/rust-by-example#1980)File tree
4 files changed
+20
-4
lines changed- src
- doc
- tools/rustbook
4 files changed
+20
-4
lines changed- .cargo/config.toml+1-1
- .github/workflows/main.yml+4-14
- .gitignore+2-2
- Cargo.lock+161-140
- Cargo.toml+8
- 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+7-8
- 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+106-214
- 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+3-2
- 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+1
- tools/xtask/README.md+3
- tools/xtask/src/main.rs+20-12
- xtask/.gitignore-1
- xtask/Cargo.lock-7
| 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