Merge pull request #1494 from nahteb/fix-typo

Fix typo in README for Observer pattern
This commit is contained in:
Ilkka Seppälä 2020-08-17 19:13:25 +03:00 committed by GitHub
commit 82bf9fdd61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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