Skip to content

Commit

Permalink
Updated getLength() JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Jun 3, 2024
1 parent b61a9ae commit 9695091
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.fxmisc.richtext;
package org.fxmisc.richtext;

import javafx.beans.value.ObservableValue;
import javafx.collections.ObservableList;
Expand Down Expand Up @@ -36,7 +36,7 @@ public interface TextEditingArea<PS, SEG, S> {
*******************/

/**
* The number of characters in this text-editing area.
* The number of Unicode code units in this text-editing area.
*/
default int getLength() { return lengthProperty().getValue(); }
ObservableValue<Integer> lengthProperty();
Expand Down

0 comments on commit 9695091

Please sign in to comment.