From 89bda692f80b310e394219dbbb6b396f944db8c6 Mon Sep 17 00:00:00 2001 From: Bethan Palmer Date: Mon, 17 Aug 2020 07:47:30 +0100 Subject: [PATCH] Fix typo in README The log message in the Orcs class should say orcs instead of hobbits. This is correct in the code example but wrong in the README. --- observer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observer/README.md b/observer/README.md index e4b3cea76..d0ddf3c00 100644 --- a/observer/README.md +++ b/observer/README.md @@ -46,7 +46,7 @@ public class Orcs implements WeatherObserver { @Override public void update(WeatherType currentWeather) { - LOGGER.info("The hobbits are facing " + currentWeather.getDescription() + " weather now"); + LOGGER.info("The orcs are facing " + currentWeather.getDescription() + " weather now"); } }