4 files changed
+4
-4
lines changed- CONTRIBUTING.md+1-1
- first-edition/src/ffi.md+3-3
- first-edition/src/procedural-macros.md+2-2
- first-edition/src/the-stack-and-the-heap.md+1-1
- index.md+2-2
- second-edition/dictionary.txt+7-1
- second-edition/nostarch/chapter02.md+209-277
- second-edition/nostarch/chapter03.md+192-190
- second-edition/nostarch/chapter04.md+190-188
- second-edition/nostarch/chapter05.md+281-196
- second-edition/nostarch/chapter06.md+84-90
- second-edition/nostarch/chapter07.md+73-102
- second-edition/nostarch/chapter08.md+173-177
- second-edition/nostarch/chapter09.md+152-157
- second-edition/nostarch/chapter10.md+946-944
- second-edition/nostarch/chapter11.md+92-89
- second-edition/nostarch/chapter12.md+143-145
- second-edition/nostarch/chapter13.md+182-179
- second-edition/nostarch/chapter14.md+42-42
- second-edition/nostarch/chapter16.md+9-12
- second-edition/nostarch/chapter17.md+445-523
- second-edition/nostarch/chapter18.md+450-611
- second-edition/nostarch/foreword.md+41
- second-edition/nostarch/odt/chapter10.docx
- second-edition/nostarch/odt/chapter17.docx
- second-edition/nostarch/odt/chapter18.docx
- second-edition/src/SUMMARY.md+2-1
- second-edition/src/appendix-02-operators.md+3-3
- second-edition/src/appendix-05-translation.md+5-2
- second-edition/src/appendix-06-newest-features.md+69
- second-edition/src/ch02-00-guessing-game-tutorial.md+198-264
- second-edition/src/ch03-00-common-programming-concepts.md+4-3
- second-edition/src/ch03-01-variables-and-mutability.md+57-55
- second-edition/src/ch03-02-data-types.md+61-64
- second-edition/src/ch03-03-how-functions-work.md+28-27
- second-edition/src/ch03-05-control-flow.md+40-35
- second-edition/src/ch04-00-understanding-ownership.md+3-3
- second-edition/src/ch04-01-what-is-ownership.md+106-106
- second-edition/src/ch04-02-references-and-borrowing.md+30-30
- second-edition/src/ch04-03-slices.md+48-48
- second-edition/src/ch05-00-structs.md+9-9
- second-edition/src/ch05-01-defining-structs.md+37-38
- second-edition/src/ch05-02-example-structs.md+38-34
- second-edition/src/ch05-03-method-syntax.md+28-28
- second-edition/src/ch06-00-enums.md+1-1
- second-edition/src/ch06-01-defining-an-enum.md+46-47
- second-edition/src/ch06-02-match.md+29-33
- second-edition/src/ch06-03-if-let.md+10-10
- second-edition/src/ch07-00-modules.md+3-3
- second-edition/src/ch07-01-mod-and-the-filesystem.md+40-42
- second-edition/src/ch07-02-controlling-visibility-with-pub.md+22-48
- second-edition/src/ch07-03-importing-names-with-use.md+11-10
- second-edition/src/ch08-00-common-collections.md+3-3
- second-edition/src/ch08-01-vectors.md+58-61
- second-edition/src/ch08-02-strings.md+68-69
- second-edition/src/ch08-03-hash-maps.md+43-43
- second-edition/src/ch09-00-error-handling.md+12-12
- second-edition/src/ch09-01-unrecoverable-errors-with-panic.md+25-26
- second-edition/src/ch09-02-recoverable-errors-with-result.md+59-61
- second-edition/src/ch09-03-to-panic-or-not-to-panic.md+55-58
- second-edition/src/ch10-00-generics.md+72-85
- second-edition/src/ch10-01-syntax.md+167-181
- second-edition/src/ch10-02-traits.md+249-277
- second-edition/src/ch10-03-lifetime-syntax.md+377-405
- second-edition/src/ch11-00-testing.md+18-17
- second-edition/src/ch11-01-writing-tests.md+52-35
- second-edition/src/ch11-02-running-tests.md+11-11
- second-edition/src/ch11-03-test-organization.md+24-25
- second-edition/src/ch12-00-an-io-project.md+5-5
- second-edition/src/ch12-01-accepting-command-line-arguments.md+20-21
- second-edition/src/ch12-02-reading-a-file.md+7-7
- second-edition/src/ch12-03-improving-error-handling-and-modularity.md+53-54
- second-edition/src/ch12-04-testing-the-librarys-functionality.md+13-13
- second-edition/src/ch12-05-working-with-environment-variables.md+33-32
- second-edition/src/ch12-06-writing-to-stderr-instead-of-stdout.md+13-14
- second-edition/src/ch13-00-functional-features.md+7-6
- second-edition/src/ch13-01-closures.md+78-73
- second-edition/src/ch13-02-iterators.md+65-65
- second-edition/src/ch13-03-improving-our-io-project.md+15-16
- second-edition/src/ch13-04-performance.md+18-19
- second-edition/src/ch14-01-release-profiles.md+4-4
- second-edition/src/ch14-02-publishing-to-crates-io.md+4-4
- second-edition/src/ch14-03-cargo-workspaces.md+34-33
- second-edition/src/ch14-04-installing-binaries.md+2-2
- second-edition/src/ch15-03-drop.md+3-3
- second-edition/src/ch15-05-interior-mutability.md+11-8
- second-edition/src/ch15-06-reference-cycles.md+1-1
- second-edition/src/ch16-03-shared-state.md+4-6
- second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md+4-5
- second-edition/src/ch17-00-oop.md+8-6
- second-edition/src/ch17-01-what-is-oo.md+74-92
- second-edition/src/ch17-02-trait-objects.md+165-205
- second-edition/src/ch17-03-oo-design-patterns.md+199-221
- second-edition/src/ch18-00-patterns.md+17-23
- second-edition/src/ch18-01-all-the-places-for-patterns.md+99-126
- second-edition/src/ch18-02-refutability.md+45-50
- second-edition/src/ch18-03-pattern-syntax.md+276-409
- second-edition/src/foreword.md+41
Submodule nomicon updated from ad5ddd6 to 6a8f0a2
Submodule reference updated from 254df65 to 7629634
0 commit comments