From ae30eb76405a51ed78016272c97084d7ea2a97a6 Mon Sep 17 00:00:00 2001 From: Kristyn Bryan Date: Thu, 14 Jul 2016 14:53:13 -0400 Subject: [PATCH] Update README.md --- unit_04/w10d02/morning_exercise/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_04/w10d02/morning_exercise/README.md b/unit_04/w10d02/morning_exercise/README.md index 201adef..a482689 100644 --- a/unit_04/w10d02/morning_exercise/README.md +++ b/unit_04/w10d02/morning_exercise/README.md @@ -83,7 +83,7 @@ var fizzbuzzer = function(x){ } else if ( x%5 == 0 ) { return 'buzz' } else { - return 'archer' + return 'Panthalassa' } } ```