book/src
Carol (Nichols || Goulding) 98165c4279 Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
..
img
SUMMARY.md Propagate edits to ch13 to src 2022-06-10 22:11:56 -04:00
appendix-00.md
appendix-01-keywords.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
appendix-02-operators.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
appendix-03-derivable-traits.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
appendix-04-useful-development-tools.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
appendix-05-editions.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
appendix-06-translation.md Update the link to the farsi translation repository 2024-02-10 18:15:14 +03:30
appendix-07-nightly-rust.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
ch00-00-introduction.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
ch01-00-getting-started.md
ch01-01-installation.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
ch01-02-hello-world.md reverted all the changes but one 2024-04-04 19:10:49 +02:00
ch01-03-hello-cargo.md Update chapter 1 from latest print edits 2022-10-20 16:39:55 -04:00
ch02-00-guessing-game-tutorial.md Merge `main` into `chriskrycho/vhb` 2024-04-19 13:02:06 -06:00
ch03-00-common-programming-concepts.md Update chapter 3 from latest print edits 2022-10-20 16:39:55 -04:00
ch03-01-variables-and-mutability.md Removed "," typo on ch03-01 line 85 2023-02-13 14:45:29 -05:00
ch03-02-data-types.md Update to Rust 1.76 2024-02-19 15:39:35 -05:00
ch03-03-how-functions-work.md Update chapter 3 from latest print edits 2022-10-20 16:39:55 -04:00
ch03-04-comments.md Update chapter 3 from latest print edits 2022-10-20 16:39:55 -04:00
ch03-05-control-flow.md Chapter 3: Clarify `return` vs. `break`. 2024-04-16 14:35:53 -06:00
ch04-00-understanding-ownership.md
ch04-01-what-is-ownership.md Update chapter 4 from latest print edits 2022-10-20 16:39:55 -04:00
ch04-02-references-and-borrowing.md Update chapter 4 from latest print edits 2022-10-20 16:39:55 -04:00
ch04-03-slices.md Merge pull request #3363 from vinsburg/patch-4 2024-04-19 12:51:38 -06:00
ch05-00-structs.md Updates from copyedit of ch5 2022-10-27 16:00:51 -04:00
ch05-01-defining-structs.md Correct the description of Listing 5-6 2024-04-05 16:06:30 -06:00
ch05-02-example-structs.md Updates from copyedit of ch5 2022-10-27 16:00:51 -04:00
ch05-03-method-syntax.md Fix plural and incorrect phrase. Fixes #3359. 2022-10-27 16:00:51 -04:00
ch06-00-enums.md Updates from copyedit of ch6 2022-10-28 16:42:57 -04:00
ch06-01-defining-an-enum.md Updates from copyedit of ch6 2022-10-28 16:42:57 -04:00
ch06-02-match.md Clarify that the conditional expression is the one under discussion 2022-10-28 16:42:57 -04:00
ch06-03-if-let.md Updates from copyedit of ch6 2022-10-28 16:42:57 -04:00
ch07-00-managing-growing-projects-with-packages-crates-and-modules.md Propagate chapter 7 edits to src 2022-05-20 22:06:38 -04:00
ch07-01-packages-and-crates.md Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
ch07-02-defining-modules-to-control-scope-and-privacy.md Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
ch07-04-bringing-paths-into-scope-with-the-use-keyword.md Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
ch07-05-separating-modules-into-different-files.md Backport changes from print for ch7 2024-04-25 17:04:25 -04:00
ch08-00-common-collections.md
ch08-01-vectors.md Fix a typo: remove an extra 's' from ch. 18.01 2024-04-01 14:29:17 -06:00
ch08-02-strings.md Remove adjective about what kind of number this is 2023-06-29 09:50:36 -04:00
ch08-03-hash-maps.md Fix listing 8-21. Fixes #3251 2022-07-04 20:36:25 -04:00
ch09-00-error-handling.md
ch09-01-unrecoverable-errors-with-panic.md Update to Rust 1.76 2024-02-19 15:39:35 -05:00
ch09-02-recoverable-errors-with-result.md Merge `main` into `nyurik:inlinefmt2` 2024-04-19 11:57:29 -06:00
ch09-03-to-panic-or-not-to-panic.md Propagate tech review ch9 edits to src 2022-05-30 21:07:29 -04:00
ch10-00-generics.md Propagate ch10 edits to src 2022-06-01 21:35:13 -04:00
ch10-01-syntax.md Change CamelCase to UpperCamelCase 2023-01-23 13:19:32 -05:00
ch10-02-traits.md Extract where clause example so it'll get rustfmtted in the future 2022-07-04 21:05:33 -04:00
ch10-03-lifetime-syntax.md Fix confusing sentence 2024-04-05 21:46:04 +03:00
ch11-00-testing.md
ch11-01-writing-tests.md Merge pull request #3534 from generalmimon/patch-1 2024-04-17 16:20:03 -06:00
ch11-02-running-tests.md Propagate ch11 tech review edits to src 2022-06-02 21:16:43 -04:00
ch11-03-test-organization.md Merge pull request #3284 from bravequickcleverfibreyarn/ch11-03-test-organization.md 2024-04-18 12:13:52 -06:00
ch12-00-an-io-project.md More little improvements to chapter 12 2022-06-03 21:10:24 -04:00
ch12-01-accepting-command-line-arguments.md More little improvements to chapter 12 2022-06-03 21:10:24 -04:00
ch12-02-reading-a-file.md More little improvements to chapter 12 2022-06-03 21:10:24 -04:00
ch12-03-improving-error-handling-and-modularity.md Ch. 12.3: be clearer about how `expect` was used 2024-04-19 13:35:31 -06:00
ch12-04-testing-the-librarys-functionality.md
ch12-05-working-with-environment-variables.md Remove redundant words 2023-06-16 00:15:10 +03:00
ch12-06-writing-to-stderr-instead-of-stdout.md More little improvements to chapter 12 2022-06-03 21:10:24 -04:00
ch13-00-functional-features.md Propagate edits to ch13 to src 2022-06-10 22:11:56 -04:00
ch13-01-closures.md Merge pull request #3290 from agotsis/closure-grammar 2024-04-19 13:35:36 -06:00
ch13-02-iterators.md Wrong listing number 2022-09-08 10:47:24 -04:00
ch13-03-improving-our-io-project.md Merge pull request #3433 from SilkovAlexander/typo_to_trait 2024-04-17 17:07:52 -06:00
ch13-04-performance.md
ch14-00-more-about-cargo.md
ch14-01-release-profiles.md
ch14-02-publishing-to-crates-io.md Ch. 14: remove extra text from cargo login code sample 2024-04-17 15:42:41 -06:00
ch14-03-cargo-workspaces.md Ch. 14: clarify workspace dependency reuse 2024-04-17 12:35:06 -06:00
ch14-04-installing-binaries.md Regenerate manual output for chapter 14 2022-10-20 16:39:55 -04:00
ch14-05-extending-cargo.md
ch15-00-smart-pointers.md Update snapshot of ch15 2022-10-20 16:39:55 -04:00
ch15-01-box.md Update to Rust 1.76 2024-02-19 15:39:35 -05:00
ch15-02-deref.md Start note sentence with a capital 2023-05-19 20:35:39 +02:00
ch15-03-drop.md Update snapshot of ch15 2022-10-20 16:39:55 -04:00
ch15-04-rc.md
ch15-05-interior-mutability.md Revert "Chapter 15-05: Fix incorrect interpretation of compiler error" 2024-04-17 15:57:05 -06:00
ch15-06-reference-cycles.md Fix grammar 2023-04-03 11:31:55 -04:00
ch16-00-concurrency.md
ch16-01-threads.md Ownership move chapter link fix 2022-09-12 22:41:11 +02:00
ch16-02-message-passing.md Fix em dashes 2023-03-10 08:54:28 -08:00
ch16-03-shared-state.md Ch. 16: fix a grammar issue 2024-04-09 09:36:49 -06:00
ch16-04-extensible-concurrency-sync-and-send.md Propagate edits to src 2022-05-02 10:18:36 -04:00
ch17-00-oop.md Propagate ch17 tech review changes to src 2022-06-07 11:14:59 -04:00
ch17-01-what-is-oo.md Ch. 17: clarify 'in order to compile' 2024-04-17 16:06:12 -06:00
ch17-02-trait-objects.md Edits to chapter 8 in response to tech review 2022-05-28 21:01:53 -04:00
ch17-03-oo-design-patterns.md Fix spelling mistake 2022-06-07 11:16:36 -04:00
ch18-00-patterns.md Propagate tech review ch18 edits to src 2022-06-13 21:05:32 -04:00
ch18-01-all-the-places-for-patterns.md Propagate ch18 edits to src 2022-05-21 20:31:44 -04:00
ch18-02-refutability.md Ch. 18: further clarify about irrefutable patterns 2024-04-18 13:57:55 -06:00
ch18-03-pattern-syntax.md Revert "ch18-03: Guarded match arm exhaustivness clarification" 2024-04-18 16:14:25 -06:00
ch19-00-advanced-features.md Propagate ch19 edits to src 2022-05-22 22:20:25 -04:00
ch19-01-unsafe-rust.md reword 2023-09-20 17:22:00 +01:00
ch19-03-advanced-traits.md Fix "`Display` type" to "`Display` trait" in ch19-03 2024-04-11 16:49:51 -04:00
ch19-04-advanced-types.md Propagate ch19 tech review edits to src 2022-06-16 21:27:25 -04:00
ch19-05-advanced-functions-and-closures.md Correct `i32` formatting in ch19-05 2023-06-12 12:24:06 -04:00
ch19-06-macros.md Use explicit 2.0, not latest, for syn docs link 2024-04-08 14:10:50 -06:00
ch20-00-final-project-a-web-server.md Propagate edits to chapter 20 to src 2022-06-07 21:46:10 -04:00
ch20-01-single-threaded.md Ch. 20: shorter version of corrected listing 2024-04-17 17:16:59 -06:00
ch20-02-multithreaded.md Make Note text in ch. 20 consistent with other notes 2024-04-03 13:44:25 -06:00
ch20-03-graceful-shutdown-and-cleanup.md Fix grammar 2022-06-28 12:08:11 -04:00
foreword.md
title-page.md Merge pull request #3642 from Smeagol2069/patch-1 2024-04-08 13:37:53 -06:00