From f504343774aaaf6a73b6b8ef93268b98d72fb85f Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 18 Feb 2025 14:59:54 +0100 Subject: [PATCH] - --- cmd/selftest/child.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/selftest/child.go b/cmd/selftest/child.go index c28fef11e..55c696e16 100644 --- a/cmd/selftest/child.go +++ b/cmd/selftest/child.go @@ -17,8 +17,8 @@ func newChildCommand() *cobra.Command { // wait_pid lives in acceptance/bin. We expect this command to only be called // from acceptance tests. // - // Note: The golang stdlib only provides a way to wait on processes - // that are children of the current process. While it's possible to + // Note: The golang standard library only provides a way to wait on + // processes that are children of the current process. While it's possible to // rely on os native syscalls to wait on arbitrary processes, it's hard // to get right and test. waitCmd := exec.Command("bash", "-euo", "pipefail", "wait_pid", os.Getenv(daemon.DatabricksCliParentPid))