1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-18 20:39:35 +02:00

Fix some exercise location mixups in Day 2 (#1136)

Should supersede #1135, I think.
This commit is contained in:
Frances Wingerter 2023-08-28 18:53:22 +00:00 committed by GitHub
parent 0e4df4b505
commit 890c46a90c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View File

@ -97,17 +97,14 @@
- [Lifetimes](ownership/lifetimes.md)
- [Lifetimes in Function Calls](ownership/lifetimes-function-calls.md)
- [Lifetimes in Data Structures](ownership/lifetimes-data-structures.md)
- [Exercises](exercises/day-2/morning.md)
- [Storing Books](exercises/day-2/book-library.md)
- [Iterators and Ownership](exercises/day-2/iterators-and-ownership.md)
- [Structs](structs.md)
- [Tuple Structs](structs/tuple-structs.md)
- [Field Shorthand Syntax](structs/field-shorthand.md)
- [Methods](methods.md)
- [Method Receiver](methods/receiver.md)
- [Example](methods/example.md)
- [Exercises](exercises/day-2/afternoon.md)
- [Exercises](exercises/day-2/morning.md)
- [Storing Books](exercises/day-2/book-library.md)
- [Health Statistics](exercises/day-2/health-statistics.md)
# Day 2: Afternoon
@ -127,6 +124,7 @@
- [Paths](modules/paths.md)
- [Filesystem Hierarchy](modules/filesystem.md)
- [Exercises](exercises/day-2/afternoon.md)
- [Iterators and Ownership](exercises/day-2/iterators-and-ownership.md)
- [Strings and Iterators](exercises/day-2/strings-iterators.md)

View File

@ -2,9 +2,9 @@
We will look at implementing methods in two contexts:
* Simple struct which tracks health statistics.
* Storing books and querying the collection
* Multiple structs and enums for a drawing library.
* Keeping track of health statistics for patients
<details>