Skip to content

Commit

Permalink
Merge pull request #56 from saarmbruster/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in private method name
  • Loading branch information
dlemmermann committed Sep 25, 2019
2 parents 4ab9f51 + b8d399b commit 39e3482
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ public void changed(ObservableValue<? extends LocalDate> observable,

getChildren().add(gridPane);

updateHyerlinkSupport();
updateHyperlinkSupport();
view.enableHyperlinksProperty()
.addListener(it -> updateHyerlinkSupport());
.addListener(it -> updateHyperlinkSupport());

buildView();

Expand All @@ -175,7 +175,7 @@ public void changed(ObservableValue<? extends LocalDate> observable,
updateUsageColors("initial creation of usage colors");
}

private void updateHyerlinkSupport() {
private void updateHyperlinkSupport() {
final YearMonthView view = getSkinnable();

if (view.isEnableHyperlinks()) {
Expand Down

0 comments on commit 39e3482

Please sign in to comment.