From 239fe7d2b56c424f7a4c5457a50d2b66a7243619 Mon Sep 17 00:00:00 2001 From: BenjaminLevy <67241803+BenjaminLevy@users.noreply.github.com> Date: Wed, 10 Aug 2022 06:20:52 -0700 Subject: [PATCH] Update maps.md (#588) Change order here to match order shown in previous snippet of this test. --- maps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps.md b/maps.md index 21692ffd8..9f74b925c 100644 --- a/maps.md +++ b/maps.md @@ -508,8 +508,8 @@ There is no refactoring we need to do on this since it was a simple change. Howe t.Run("existing word", func(t *testing.T) { word := "test" definition := "this is just a test" + dictionary := Dictionary{word: definition} newDefinition := "new definition" - dictionary := Dictionary{word: definition} err := dictionary.Update(word, newDefinition)