From 85448f851145d1053bf4c930879ff9f8a2cfc16b Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 18:40:13 -0700 Subject: [PATCH] butil: fix 'sucess' -> 'success' typos in process_util.h comments Doc comments in src/butil/process_util.h read 'on sucess' (lines 31, 36). Fixed to 'on success'. Comment-only change. Signed-off-by: SAY-5 --- src/butil/process_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/butil/process_util.h b/src/butil/process_util.h index 5493e263d6..c6e8ab55c8 100644 --- a/src/butil/process_util.h +++ b/src/butil/process_util.h @@ -28,12 +28,12 @@ namespace butil { // Read command line of this program. If `with_args' is true, args are // included and separated with spaces. -// Returns length of the command line on sucess, -1 otherwise. +// Returns length of the command line on success, -1 otherwise. // NOTE: `buf' does not end with zero. ssize_t ReadCommandLine(char* buf, size_t len, bool with_args); // Get absolute path of this program. -// Returns length of the absolute path on sucess, -1 otherwise. +// Returns length of the absolute path on success, -1 otherwise. // NOTE: `buf' does not end with zero. ssize_t GetProcessAbsolutePath(char* buf, size_t len);