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.
This commit is contained in:
Bethan Palmer 2020-08-17 07:47:30 +01:00
parent 7afb065a10
commit 89bda692f8

View File

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