From 2e036759ee866497ab46e99069c1592f7c62018c Mon Sep 17 00:00:00 2001 From: Walter Bonetti Date: Sat, 7 Nov 2020 21:26:56 -0500 Subject: [PATCH] Update buildings.rs Fix typo index of building in Chapter 05 --- Chapter05/src/buildings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter05/src/buildings.rs b/Chapter05/src/buildings.rs index 14708fe..bba1ab3 100644 --- a/Chapter05/src/buildings.rs +++ b/Chapter05/src/buildings.rs @@ -62,7 +62,7 @@ impl Building for Building1 { } fn serialize(&self) -> u64 { - 2 + 1 } }