Skip to content

Commit 8f44d4c

Browse files
authored
Merge pull request #83 from daniel-shuy/patch-1
Fix typo in README
2 parents e65e6ce + 764ca70 commit 8f44d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Note that many Nodes in JavaFX will have an initial value, which sometimes can b
151151

152152
##### ObservableValue Changes
153153

154-
For every change to an `ObservableValue`, you can emit the old value and new value as a pair. The two values will be wrapped up in a `Change` class and you can access them via `getOldVal()` and `getNewVal()`. Just call the `JavaFxObservable.valuesOfChanges()` factory.
154+
For every change to an `ObservableValue`, you can emit the old value and new value as a pair. The two values will be wrapped up in a `Change` class and you can access them via `getOldVal()` and `getNewVal()`. Just call the `JavaFxObservable.changesOf()` factory.
155155

156156
```java
157157
SpinnerValueFactory<Integer> svf = new SpinnerValueFactory.IntegerSpinnerValueFactory(0, 100);

0 commit comments

Comments
 (0)