< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/Slider.java

Print this page
rev 10292 : 8173385: spelling errors in JavaFX javadoc
Reviewed-by: aghaisas

@@ -69,16 +69,16 @@
  * <p>
  * The three fundamental variables of the slider are <code>min</code>,
  * <code>max</code>, and <code>value</code>. The <code>value</code> should always
  * be a number within the range defined by <code>min</code> and
  * <code>max</code>. <code>min</code> should always be less than or equal to
- * <code>max</code> (although a slider who's <code>min</code> and
+ * <code>max</code> (although a slider whose <code>min</code> and
  * <code>max</code> are equal is a degenerate case that makes no sense).
  * <code>min</code> defaults to 0, whereas <code>max</code> defaults to 100.
  * <p>
- * 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:
  *
  * <pre>
  * import javafx.scene.control.Slider;
  *
  * Slider slider = new Slider(0, 1, 0.5);
< prev index next >