From 1ecc5bfc61599643f1dc52c4108be5e73874c921 Mon Sep 17 00:00:00 2001
From: Yuri <yurivish@gmail.com>
Date: Fri, 19 Feb 2021 13:19:32 -0500
Subject: [PATCH] Fix a typo

---
 examples/execing-processes/execing-processes.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/execing-processes/execing-processes.go b/examples/execing-processes/execing-processes.go
index 18eb283..04f5816 100644
--- a/examples/execing-processes/execing-processes.go
+++ b/examples/execing-processes/execing-processes.go
@@ -28,7 +28,7 @@ func main() {
 	}
 
 	// `Exec` requires arguments in slice form (as
-	// apposed to one big string). We'll give `ls` a few
+	// opposed to one big string). We'll give `ls` a few
 	// common arguments. Note that the first argument should
 	// be the program name.
 	args := []string{"ls", "-a", "-l", "-h"}