Skip to content

Commit 492c35a

Browse files
Fix typo: use camel case
1 parent e63eef2 commit 492c35a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

richtextfx/src/main/java/org/fxmisc/richtext/BoundedSelectionImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public class BoundedSelectionImpl<PS, SEG, S> implements BoundedSelection<PS, SE
7272

7373
@Override public EventStream<?> dirtyEvents() { return delegate.dirtyEvents(); }
7474

75-
private final SuspendableNo beingupdated = new SuspendableNo();
76-
public final boolean isBeingUpdated() { return beingupdated.get(); }
77-
public final ObservableValue<Boolean> beingUpdatedProperty() { return beingupdated; }
75+
private final SuspendableNo beingUpdated = new SuspendableNo();
76+
public final boolean isBeingUpdated() { return beingUpdated.get(); }
77+
public final ObservableValue<Boolean> beingUpdatedProperty() { return beingUpdated; }
7878

7979
private final Var<Boolean> internalStartedByAnchor = Var.newSimpleVar(true);
8080
private final SuspendableVal<Boolean> startedByAnchor = internalStartedByAnchor.suspendable();
@@ -112,7 +112,7 @@ public class BoundedSelectionImpl<PS, SEG, S> implements BoundedSelection<PS, SE
112112

113113
Suspendable omniSuspendable = Suspendable.combine(
114114
// first, so it's released last
115-
beingupdated,
115+
beingUpdated,
116116

117117
startedByAnchor,
118118

0 commit comments

Comments
 (0)