diff options
| author | 2025-03-05 03:11:57 -0800 | |
|---|---|---|
| committer | 2025-03-05 03:11:57 -0800 | |
| commit | 5f830df0ba7a218c6e4e6b5513c5866b5862012e (patch) | |
| tree | 2bad1f7ce2f5b18d606b47615a19fa0a1597f38e | |
| parent | ebf9452856a5493ae5ed75078c3178363ad0e316 (diff) | |
Fix typo in ListView documentation
Test: n/a
Fixes: 148905109
Change-Id: Ia74e0904892a7276cf3361a995a0935f5ef6f36a
| -rw-r--r-- | core/java/android/widget/ListView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/ListView.java b/core/java/android/widget/ListView.java index 3f611c7efbdd..a328c78f3738 100644 --- a/core/java/android/widget/ListView.java +++ b/core/java/android/widget/ListView.java @@ -72,7 +72,7 @@ import java.util.function.Predicate; /** * <p>Displays a vertically-scrollable collection of views, where each view is positioned - * immediatelybelow the previous view in the list. For a more modern, flexible, and performant + * immediately below the previous view in the list. For a more modern, flexible, and performant * approach to displaying lists, use {@link androidx.recyclerview.widget.RecyclerView}.</p> * * <p>To display a list, you can include a list view in your layout XML file:</p> |