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"); } }