--- old/modules/javafx.controls/src/main/java/javafx/scene/chart/ValueAxis.java 2017-03-07 00:28:18.106812100 +0300 +++ new/modules/javafx.controls/src/main/java/javafx/scene/chart/ValueAxis.java 2017-03-07 00:28:17.955803400 +0300 @@ -72,7 +72,7 @@ // -------------- PRIVATE PROPERTIES ------------------------------------------------------------------------------- /** - * The current value for the lowerBound of this axis, i.e. min value. + * The current value for the lowerBound of this axis, ie min value. * This may be the same as lowerBound or different. It is used by NumberAxis to animate the * lowerBound from the old value to the new value. */ @@ -120,7 +120,7 @@ public final ReadOnlyDoubleProperty scaleProperty() { return scale.getReadOnlyProperty(); } ReadOnlyDoubleWrapper scalePropertyImpl() { return scale; } - /** The value for the upper bound of this axis, i.e. max value. This is automatically set if auto ranging is on. */ + /** The value for the upper bound of this axis, ie max value. This is automatically set if auto ranging is on. */ private DoubleProperty upperBound = new DoublePropertyBase(100) { @Override protected void invalidated() { if(!isAutoRanging()) { @@ -143,7 +143,7 @@ public final void setUpperBound(double value) { upperBound.set(value); } public final DoubleProperty upperBoundProperty() { return upperBound; } - /** The value for the lower bound of this axis, i.e. min value. This is automatically set if auto ranging is on. */ + /** The value for the lower bound of this axis, ie min value. This is automatically set if auto ranging is on. */ private DoubleProperty lowerBound = new DoublePropertyBase(0) { @Override protected void invalidated() { if(!isAutoRanging()) {