Skip to content

Fix some exercise location mixups in Day 2 #1136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2023
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
8 changes: 3 additions & 5 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions src/exercises/day-2/morning.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down