--- old/modules/javafx.base/src/main/java/javafx/collections/ObservableList.java 2017-01-30 10:26:56.000000000 +1300 +++ new/modules/javafx.base/src/main/java/javafx/collections/ObservableList.java 2017-01-30 10:26:56.000000000 +1300 @@ -81,7 +81,7 @@ public boolean setAll(Collection col); /** - * A convenient method for var-arg usage of removaAll method. + * A convenient method for var-arg usage of removeAll method. * @param elements the elements to be removed * @return true if list changed as a result of this call */ --- old/modules/javafx.base/src/main/java/javafx/collections/transformation/FilteredList.java 2017-01-30 10:26:57.000000000 +1300 +++ new/modules/javafx.base/src/main/java/javafx/collections/transformation/FilteredList.java 2017-01-30 10:26:56.000000000 +1300 @@ -40,7 +40,7 @@ import javafx.collections.ObservableList; /** - * Wraps an ObservableList and filters it's content using the provided Predicate. + * Wraps an ObservableList and filters its content using the provided Predicate. * All changes in the ObservableList are propagated immediately * to the FilteredList. * --- old/modules/javafx.base/src/main/java/javafx/collections/transformation/SortedList.java 2017-01-30 10:26:58.000000000 +1300 +++ new/modules/javafx.base/src/main/java/javafx/collections/transformation/SortedList.java 2017-01-30 10:26:57.000000000 +1300 @@ -41,7 +41,7 @@ import javafx.collections.ObservableList; /** - * Wraps an ObservableList and sorts it's content. + * Wraps an ObservableList and sorts its content. * All changes in the ObservableList are propagated immediately * to the SortedList. * --- old/modules/javafx.controls/src/main/java/javafx/scene/control/Slider.java 2017-01-30 10:26:59.000000000 +1300 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/Slider.java 2017-01-30 10:26:58.000000000 +1300 @@ -71,12 +71,12 @@ * max, and value. The value should always * be a number within the range defined by min and * max. min should always be less than or equal to - * max (although a slider who's min and + * max (although a slider whose min and * max are equal is a degenerate case that makes no sense). * min defaults to 0, whereas max defaults to 100. *

- * This first example creates a slider who's range, or span, goes from 0 to 1, - * and who's value defaults to .5: + * This first example creates a slider whose range, or span, goes from 0 to 1, + * and whose value defaults to .5: * *

  * import javafx.scene.control.Slider;