diff options
author | 2024-10-08 15:40:15 +0000 | |
---|---|---|
committer | 2024-10-08 15:40:15 +0000 | |
commit | b1815bd8ce061386eeca68a04bc9e6ccaaaf61ee (patch) | |
tree | edc1be3ab169e3346c9b5290fd1b1fd926df7d82 | |
parent | 153008c5ac237d085fa432a16396f931956f73b2 (diff) | |
parent | cd769af5b656326cc68ebb0b997ea83dc8a2d77f (diff) |
Merge "Fix a small typo in `SystemClock` class docs. ---- Fix typo in SystemClock.java" into main
-rw-r--r-- | core/java/android/os/SystemClock.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/SystemClock.java b/core/java/android/os/SystemClock.java index 23bd30a21c4c..d0c23becc45e 100644 --- a/core/java/android/os/SystemClock.java +++ b/core/java/android/os/SystemClock.java @@ -60,7 +60,7 @@ import java.time.ZoneOffset; * sleep (CPU off, display dark, device waiting for external input), * but is not affected by clock scaling, idle, or other power saving * mechanisms. This is the basis for most interval timing - * such as {@link Thread#sleep(long) Thread.sleep(millls)}, + * such as {@link Thread#sleep(long) Thread.sleep(millis)}, * {@link Object#wait(long) Object.wait(millis)}, and * {@link System#nanoTime System.nanoTime()}. This clock is guaranteed * to be monotonic, and is suitable for interval timing when the |