From 3bb1c668b04e11504dbc2cb7f71b37d18c48230e Mon Sep 17 00:00:00 2001 From: Ilkka Poutanen Date: Sun, 28 Sep 2025 14:03:09 +0300 Subject: [PATCH] The USPS abbreviation for Arizona is AZ AR is Arkansas. --- _overviews/scala3-book/control-structures.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_overviews/scala3-book/control-structures.md b/_overviews/scala3-book/control-structures.md index 9d44db59cb..5e10cd7f76 100644 --- a/_overviews/scala3-book/control-structures.md +++ b/_overviews/scala3-book/control-structures.md @@ -404,7 +404,7 @@ For example, given this `Map` of state abbreviations and their full names: val states = Map( "AK" -> "Alaska", "AL" -> "Alabama", - "AR" -> "Arizona" + "AZ" -> "Arizona" ) ``` {% endtab %} @@ -433,7 +433,7 @@ Here’s what that looks like in the REPL: scala> for ((abbrev, fullName) <- states) println(s"$abbrev: $fullName") AK: Alaska AL: Alabama -AR: Arizona +AZ: Arizona ``` {% endtab %} {% tab 'Scala 3' for=control-structures-17 %} @@ -441,7 +441,7 @@ AR: Arizona scala> for (abbrev, fullName) <- states do println(s"$abbrev: $fullName") AK: Alaska AL: Alabama -AR: Arizona +AZ: Arizona ``` {% endtab %} {% endtabs %}