diff --git a/core/java/android/os/UEventObserver.java b/core/java/android/os/UEventObserver.java index 9dbfd50744a28..5c80ca6559aee 100644 --- a/core/java/android/os/UEventObserver.java +++ b/core/java/android/os/UEventObserver.java @@ -22,13 +22,13 @@ import java.util.ArrayList; import java.util.HashMap; /** - * UEventObserver is an abstract class that receives UEvent's from the kernel.

+ * UEventObserver is an abstract class that receives UEvents from the kernel.

* * Subclass UEventObserver, implementing onUEvent(UEvent event), then call * startObserving() with a match string. The UEvent thread will then call your * onUEvent() method when a UEvent occurs that contains your match string.

* - * Call stopObserving() to stop receiving UEvent's.

+ * Call stopObserving() to stop receiving UEvents.

* * There is only one UEvent thread per process, even if that process has * multiple UEventObserver subclass instances. The UEvent thread starts when @@ -78,7 +78,7 @@ public abstract class UEventObserver { } /** - * Begin observation of UEvent's.

+ * Begin observation of UEvents.

* This method will cause the UEvent thread to start if this is the first * invocation of startObserving in this process.

* Once called, the UEvent thread will call onUEvent() when an incoming @@ -103,7 +103,7 @@ public abstract class UEventObserver { } /** - * End observation of UEvent's.

+ * End observation of UEvents.

* This process's UEvent thread will never call onUEvent() on this * UEventObserver after this call. Repeated calls have no effect. */