We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d00271 commit 62df3aeCopy full SHA for 62df3ae
src/code-listings/lesson-10.fsx
@@ -53,6 +53,6 @@ let randomAgeCustomer = updateAge customer
53
// Listing 10.9
54
do
55
let myHome = { Street = "The Street"; Town = "The Town"; City = "The City" }
56
- let myHome = { address with City = "The Other City" }
57
- let myHome = { address with City = "The Third City" }
+ let myHome = { myHome with City = "The Other City" }
+ let myHome = { myHome with City = "The Third City" }
58
()
0 commit comments