From 904ec85b6196b1e098c4045a3ab666b4715eba2c Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Mon, 12 Apr 2021 13:36:08 +0000 Subject: [PATCH] Fix typo in documentation of `ZygoteCommandBuffer.nativeForkRepeatedly`. Test: none (documentation change) Change-Id: I3373f33b1d3a292f79129048733f7ecacb5c4907 --- core/java/com/android/internal/os/ZygoteCommandBuffer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/com/android/internal/os/ZygoteCommandBuffer.java b/core/java/com/android/internal/os/ZygoteCommandBuffer.java index b61ae7acfacdf..83a68ca3ab7e1 100644 --- a/core/java/com/android/internal/os/ZygoteCommandBuffer.java +++ b/core/java/com/android/internal/os/ZygoteCommandBuffer.java @@ -176,7 +176,7 @@ class ZygoteCommandBuffer implements AutoCloseable { /* * Repeatedly fork children as above. It commonly does not return in the parent, but it may. - * @return true in the chaild, false in the parent if we encounter a command we couldn't handle. + * @return true in the child, false in the parent if we encounter a command we couldn't handle. */ private static native boolean nativeForkRepeatedly(long /* NativeCommandBuffer* */ nbuffer, int zygoteSocketRawFd,