Merge pull request #941 from FormatFa/patch_word

修复打错的代码
This commit is contained in:
CyC2018 2020-11-02 00:03:58 +08:00 committed by GitHub
commit e8bbe19311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ public interface Observer {
public class StatisticsDisplay implements Observer {
public StatisticsDisplay(Subject weatherData) {
weatherData.reisterObserver(this);
weatherData.registerObserver(this);
}
@Override