Skip to content
Merged
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/ch05-01-defining-structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ otherwise use the same values from `user1` that we created in Listing 5-2.
{{#rustdoc_include ../listings/ch05-using-structs-to-structure-related-data/listing-05-06/src/main.rs:here}}
```

<span class="caption">Listing 5-6: Creating a new `User` instance using one of
<span class="caption">Listing 5-6: Creating a new `User` instance using all but one of
the values from `user1`</span>

Using struct update syntax, we can achieve the same effect with less code, as
Expand Down