Skip to content

Commit

Permalink
Rollup merge of #137552 - rustbot:docs-update, r=ehuss
Browse files Browse the repository at this point in the history
Update books

## rust-lang/book

2 commits in d4d2c18cbd20876b2130a546e790446a8444cb32..4a01a9182496f807aaa5f72d93a25ce18bcbe105
2025-02-24 14:48:34 UTC to 2025-02-13 19:29:47 UTC

- Fix typos in chapter 17 (rust-lang/book#4238)
- NoStarch backports (rust-lang/book#4224)

## rust-lang/edition-guide

2 commits in 8dbdda7cae4fa030f09f8f5b63994d4d1dde74b9..daa4b763cd848f986813b5cf8069e1649f7147af
2025-02-22 14:58:51 UTC to 2025-02-21 02:30:17 UTC

- Remove precise capturing features (rust-lang/edition-guide#362)
- use same name as previous example (rust-lang/edition-guide#360)

## rust-lang/nomicon

1 commits in 336f75835a6c0514852cc65aba9a698b699b13c8..8f5c7322b65d079aa5b242eb10d89a98e12471e1
2025-02-19 13:16:47 UTC to 2025-02-19 13:16:47 UTC

- other-reprs: do not make it sound like we are making ABI promises for repr(int) enums (rust-lang/nomicon#461)

## rust-lang/reference

4 commits in 6195dbd70fc6f0980c314b4d23875ac570d8253a..615b4cec60c269cfc105d511c93287620032d5b0
2025-02-18 23:01:53 UTC to 2025-02-13 15:12:49 UTC

- Add rule identifiers to names chapters (rust-lang/reference#1737)
- Switch from AVX to SSE in the example (rust-lang/reference#1735)
- Remove attributes from struct field rest patterns (rust-lang/reference#1736)
- Update reference for target_feature_11. (rust-lang/reference#1720)
  • Loading branch information
compiler-errors authored Feb 25, 2025
2 parents 6e6dced + 0fcb080 commit c11a523
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/doc/book
Submodule book updated 65 files
+1 −0 ci/dictionary.txt
+1 −1 listings/ch03-common-programming-concepts/no-listing-24-comments-end-of-line/src/main.rs
+1 −1 listings/ch03-common-programming-concepts/no-listing-25-comments-above-line/src/main.rs
+16 −15 listings/ch04-understanding-ownership/listing-04-04/src/main.rs
+4 −3 listings/ch04-understanding-ownership/listing-04-09/src/main.rs
+1 −1 listings/ch04-understanding-ownership/no-listing-13-reference-scope-ends/src/main.rs
+2 −2 listings/ch04-understanding-ownership/no-listing-15-dangling-reference-annotated/src/main.rs
+3 −0 listings/ch07-managing-growing-projects/listing-07-05/src/lib.rs
+3 −0 listings/ch07-managing-growing-projects/listing-07-07/src/lib.rs
+3 −3 listings/ch07-managing-growing-projects/listing-07-09/src/lib.rs
+1 −1 listings/ch08-common-collections/listing-08-12/src/main.rs
+1 −1 listings/ch15-smart-pointers/listing-15-26/src/main.rs
+2 −2 listings/ch20-advanced-features/listing-20-32/hello_macro/hello_macro_derive/src/lib.rs
+15 −15 src/appendix-03-derivable-traits.md
+9 −9 src/ch00-00-introduction.md
+0 −2 src/ch01-03-hello-cargo.md
+1 −1 src/ch02-00-guessing-game-tutorial.md
+6 −6 src/ch03-02-data-types.md
+2 −2 src/ch03-04-comments.md
+3 −3 src/ch04-03-slices.md
+1 −1 src/ch06-02-match.md
+1 −1 src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md
+9 −10 src/ch07-01-packages-and-crates.md
+5 −5 src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md
+17 −17 src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md
+6 −6 src/ch08-00-common-collections.md
+1 −2 src/ch08-01-vectors.md
+7 −8 src/ch08-03-hash-maps.md
+2 −2 src/ch09-00-error-handling.md
+9 −9 src/ch09-02-recoverable-errors-with-result.md
+2 −2 src/ch09-03-to-panic-or-not-to-panic.md
+2 −2 src/ch10-01-syntax.md
+10 −10 src/ch10-03-lifetime-syntax.md
+4 −4 src/ch11-00-testing.md
+20 −23 src/ch11-01-writing-tests.md
+13 −14 src/ch11-03-test-organization.md
+2 −2 src/ch15-00-smart-pointers.md
+4 −4 src/ch15-01-box.md
+15 −11 src/ch15-02-deref.md
+2 −2 src/ch15-03-drop.md
+3 −3 src/ch15-04-rc.md
+7 −7 src/ch15-05-interior-mutability.md
+6 −6 src/ch15-06-reference-cycles.md
+4 −4 src/ch16-00-concurrency.md
+10 −10 src/ch16-01-threads.md
+12 −10 src/ch16-02-message-passing.md
+10 −10 src/ch16-03-shared-state.md
+2 −2 src/ch16-04-extensible-concurrency-sync-and-send.md
+2 −2 src/ch17-04-streams.md
+2 −2 src/ch17-05-traits-for-async.md
+4 −4 src/ch18-01-what-is-oo.md
+13 −13 src/ch18-02-trait-objects.md
+1 −1 src/ch19-01-all-the-places-for-patterns.md
+2 −2 src/ch19-03-pattern-syntax.md
+25 −26 src/ch20-01-unsafe-rust.md
+27 −28 src/ch20-02-advanced-traits.md
+29 −33 src/ch20-03-advanced-types.md
+11 −11 src/ch20-04-advanced-functions-and-closures.md
+9 −9 src/ch20-05-macros.md
+18 −18 src/ch21-01-single-threaded.md
+66 −63 src/ch21-02-multithreaded.md
+43 −42 src/ch21-03-graceful-shutdown-and-cleanup.md
+0 −1 src/title-page.md
+3 −0 tools/doc-to-md.sh
+40 −20 tools/docx-to-md.xsl
2 changes: 1 addition & 1 deletion src/doc/edition-guide
2 changes: 1 addition & 1 deletion src/doc/nomicon
Submodule nomicon updated 1 files
+10 −5 src/other-reprs.md

0 comments on commit c11a523

Please sign in to comment.