This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree
23 files changed
+92
-49
lines changed- src
- doc
- libcore/mem
- librustc_codegen_ssa/back
- librustc_error_codes
- error_codes
- librustc_metadata/rmeta
- librustc_middle
- hir
- query
- ty
- librustc_parse/lexer
- librustc_resolve
- librustdoc/html/static
- test/ui
23 files changed
+92
-49
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 |
| - | |
| 28 | + | |
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
|
- CONTRIBUTING.md+1-1
- ci/dictionary.txt+1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-03/src/main.rs+5-5
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-04/src/main.rs+8-8
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-05/src/main.rs+2-2
- listings/ch13-functional-features/listing-13-26/src/lib.rs+1-1
- listings/ch13-functional-features/listing-13-27/src/lib.rs+1-1
- listings/ch15-smart-pointers/listing-15-24/output.txt+2-2
- listings/ch15-smart-pointers/listing-15-24/src/main.rs+2-2
- src/appendix-04-useful-development-tools.md+7-7
- src/appendix-06-translation.md+1
- src/appendix-07-nightly-rust.md+2-2
- src/ch01-01-installation.md+4-4
- src/ch01-02-hello-world.md+4-4
- src/ch01-03-hello-cargo.md+10-9
- src/ch02-00-guessing-game-tutorial.md+12-12
- src/ch03-01-variables-and-mutability.md+4-4
- src/ch03-02-data-types.md+2-2
- src/ch03-03-how-functions-work.md+7-6
- src/ch03-05-control-flow.md+7-7
- src/ch04-01-what-is-ownership.md+1-1
- src/ch04-02-references-and-borrowing.md+4-4
- src/ch04-03-slices.md+1-1
- src/ch05-01-defining-structs.md+1-1
- src/ch05-02-example-structs.md+3-3
- src/ch06-01-defining-an-enum.md+1-1
- src/ch06-02-match.md+1-1
- src/ch07-01-packages-and-crates.md+1-1
- src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md+2-2
- src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md+4-4
- src/ch08-01-vectors.md+2-2
- src/ch08-02-strings.md+2-2
- src/ch09-01-unrecoverable-errors-with-panic.md+3-3
- src/ch09-02-recoverable-errors-with-result.md+2-2
- src/ch10-01-syntax.md+5-4
- src/ch10-02-traits.md+1-1
- src/ch10-03-lifetime-syntax.md+8-11
- src/ch11-01-writing-tests.md+13-13
- src/ch11-02-running-tests.md+9-9
- src/ch11-03-test-organization.md+3-3
- src/ch12-01-accepting-command-line-arguments.md+5-5
- src/ch12-02-reading-a-file.md+1-1
- src/ch12-03-improving-error-handling-and-modularity.md+4-4
- src/ch12-04-testing-the-librarys-functionality.md+6-6
- src/ch12-05-working-with-environment-variables.md+18-9
- src/ch12-06-writing-to-stderr-instead-of-stdout.md+2-2
- src/ch13-01-closures.md+4-4
- src/ch13-02-iterators.md+1-1
- src/ch14-01-release-profiles.md+1-1
- src/ch14-02-publishing-to-crates-io.md+5-5
- src/ch14-03-cargo-workspaces.md+9-9
- src/ch14-04-installing-binaries.md+1-1
- src/ch15-01-box.md+1-1
- src/ch15-02-deref.md+3-3
- src/ch15-03-drop.md+4-4
- src/ch15-04-rc.md+2-2
- src/ch15-05-interior-mutability.md+3-3
- src/ch15-06-reference-cycles.md+1-1
- src/ch16-01-threads.md+2-2
- src/ch16-02-message-passing.md+1-1
- src/ch16-03-shared-state.md+2-2
- src/ch17-02-trait-objects.md+2-2
- src/ch18-01-all-the-places-for-patterns.md+2-2
- src/ch18-02-refutability.md+2-2
- src/ch18-03-pattern-syntax.md+1-1
- src/ch19-01-unsafe-rust.md+2-2
- src/ch19-03-advanced-traits.md+5-5
- src/ch19-05-advanced-functions-and-closures.md+1-1
- src/ch19-06-macros.md+2-2
- src/ch20-01-single-threaded.md+2-2
- src/ch20-02-multithreaded.md+6-6
- src/ch20-03-graceful-shutdown-and-cleanup.md+3-3
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
808 | 808 |
| |
809 | 809 |
| |
810 | 810 |
| |
811 |
| - | |
| 811 | + | |
812 | 812 |
| |
813 | 813 |
| |
814 | 814 |
| |
|
Lines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
481 | 481 |
| |
482 | 482 |
| |
483 | 483 |
| |
484 |
| - | |
| 484 | + | |
| 485 | + | |
485 | 486 |
| |
486 | 487 |
| |
487 |
| - | |
| 488 | + | |
| 489 | + | |
488 | 490 |
| |
489 | 491 |
| |
490 | 492 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
437 | 437 |
| |
438 | 438 |
| |
439 | 439 |
| |
| 440 | + | |
440 | 441 |
| |
441 | 442 |
| |
442 | 443 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
17 |
| - | |
| 17 | + | |
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
|
Lines changed: 20 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + |
0 commit comments