Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/doc/book
Submodule book updated 98 files
+5 −0 ci/dictionary.txt
+0 −17 nostarch/acknowledgments.md
+57 −33 nostarch/chapter01.md
+60 −51 nostarch/chapter02.md
+98 −81 nostarch/chapter03.md
+94 −94 nostarch/chapter04.md
+86 −62 nostarch/chapter05.md
+68 −60 nostarch/chapter06.md
+99 −83 nostarch/chapter07.md
+87 −59 nostarch/chapter08.md
+120 −95 nostarch/chapter09.md
+ nostarch/docx/chapter01.docx
+ nostarch/docx/chapter02.docx
+ nostarch/docx/chapter03.docx
+ nostarch/docx/chapter04.docx
+ nostarch/docx/chapter05.docx
+ nostarch/docx/chapter06.docx
+ nostarch/docx/chapter07.docx
+ nostarch/docx/chapter08.docx
+ nostarch/docx/chapter09.docx
+ nostarch/docx/frontmatter.docx
+140 −114 nostarch/frontmatter.md
+15 −15 src/SUMMARY.md
+75 −70 src/ch00-00-introduction.md
+16 −8 src/ch01-01-installation.md
+26 −13 src/ch01-02-hello-world.md
+13 −10 src/ch01-03-hello-cargo.md
+58 −51 src/ch02-00-guessing-game-tutorial.md
+2 −2 src/ch03-00-common-programming-concepts.md
+13 −10 src/ch03-01-variables-and-mutability.md
+29 −26 src/ch03-02-data-types.md
+17 −18 src/ch03-03-how-functions-work.md
+2 −2 src/ch03-04-comments.md
+31 −24 src/ch03-05-control-flow.md
+48 −50 src/ch04-01-what-is-ownership.md
+16 −16 src/ch04-02-references-and-borrowing.md
+30 −29 src/ch04-03-slices.md
+4 −4 src/ch05-00-structs.md
+32 −19 src/ch05-01-defining-structs.md
+19 −11 src/ch05-02-example-structs.md
+20 −16 src/ch05-03-method-syntax.md
+3 −3 src/ch06-00-enums.md
+26 −22 src/ch06-01-defining-an-enum.md
+23 −17 src/ch06-02-match.md
+12 −12 src/ch06-03-if-let.md
+9 −5 src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md
+16 −15 src/ch07-01-packages-and-crates.md
+17 −13 src/ch07-02-defining-modules-to-control-scope-and-privacy.md
+24 −25 src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md
+18 −10 src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md
+9 −9 src/ch07-05-separating-modules-into-different-files.md
+1 −1 src/ch08-00-common-collections.md
+19 −19 src/ch08-01-vectors.md
+53 −29 src/ch08-02-strings.md
+14 −10 src/ch08-03-hash-maps.md
+3 −3 src/ch09-00-error-handling.md
+7 −7 src/ch09-01-unrecoverable-errors-with-panic.md
+46 −34 src/ch09-02-recoverable-errors-with-result.md
+64 −54 src/ch09-03-to-panic-or-not-to-panic.md
+20 −4 src/ch10-02-traits.md
+25 −5 src/ch10-03-lifetime-syntax.md
+5 −1 src/ch11-01-writing-tests.md
+5 −1 src/ch11-02-running-tests.md
+6 −2 src/ch11-03-test-organization.md
+7 −3 src/ch12-03-improving-error-handling-and-modularity.md
+4 −1 src/ch12-04-testing-the-librarys-functionality.md
+4 −1 src/ch12-05-working-with-environment-variables.md
+5 −1 src/ch12-06-writing-to-stderr-instead-of-stdout.md
+9 −4 src/ch13-01-closures.md
+4 −1 src/ch13-02-iterators.md
+11 −3 src/ch13-03-improving-our-io-project.md
+5 −1 src/ch13-04-performance.md
+15 −4 src/ch14-02-publishing-to-crates-io.md
+6 −2 src/ch14-03-cargo-workspaces.md
+1 −1 src/ch14-04-installing-binaries.md
+15 −3 src/ch15-01-box.md
+16 −6 src/ch15-02-deref.md
+1 −1 src/ch15-03-drop.md
+10 −2 src/ch15-04-rc.md
+23 −6 src/ch15-05-interior-mutability.md
+6 −2 src/ch15-06-reference-cycles.md
+5 −1 src/ch16-01-threads.md
+20 −4 src/ch16-02-message-passing.md
+15 −3 src/ch16-03-shared-state.md
+13 −4 src/ch16-04-extensible-concurrency-sync-and-send.md
+1 −1 src/ch18-00-oop.md
+5 −1 src/ch18-02-trait-objects.md
+12 −3 src/ch18-03-oo-design-patterns.md
+2 −2 src/ch19-01-all-the-places-for-patterns.md
+36 −9 src/ch19-03-pattern-syntax.md
+5 −1 src/ch20-01-unsafe-rust.md
+16 −8 src/ch20-02-advanced-traits.md
+10 −2 src/ch20-03-advanced-types.md
+10 −2 src/ch20-05-macros.md
+10 −2 src/ch21-01-single-threaded.md
+5 −1 src/ch21-02-multithreaded.md
+39 −33 src/foreword.md
+7 −4 src/title-page.md
2 changes: 1 addition & 1 deletion src/doc/edition-guide
2 changes: 1 addition & 1 deletion src/doc/nomicon
Submodule nomicon updated 1 files
+1 −1 src/ffi.md
Loading