From 5504e9d38e448044651041ee5bac7cd36c211bce Mon Sep 17 00:00:00 2001 From: nlisker <37422899+nlisker@users.noreply.github.com> Date: Thu, 5 Sep 2024 00:31:04 +0300 Subject: [PATCH] Fix typo in TextFormatter.java --- .../src/main/java/javafx/scene/control/TextFormatter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/javafx.controls/src/main/java/javafx/scene/control/TextFormatter.java b/modules/javafx.controls/src/main/java/javafx/scene/control/TextFormatter.java index d32b2a67092..5b12066ad9a 100644 --- a/modules/javafx.controls/src/main/java/javafx/scene/control/TextFormatter.java +++ b/modules/javafx.controls/src/main/java/javafx/scene/control/TextFormatter.java @@ -118,7 +118,7 @@ public TextFormatter(@NamedArg("valueConverter") StringConverter valueConvert * The converter between the values and text. * It maintains a "binding" between the {@link javafx.scene.control.TextInputControl#textProperty()} } * and {@link #valueProperty()} }. The value is updated when the control loses it's focus or it is committed (TextField only). - * Setting the value will update the text of the control, usin the provided converter. + * Setting the value will update the text of the control, using the provided converter. * * If it's impossible to convert text to value, an exception should be thrown. * @return StringConverter for values or null if none provided