From a6a7e9e59970013fb45c56de5675e4e5af6f052b Mon Sep 17 00:00:00 2001 From: Noam Cohen Date: Thu, 6 Jun 2024 15:39:04 +0300 Subject: [PATCH] rename `OS X` to `macOS` --- _content/tour/flowcontrol/switch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_content/tour/flowcontrol/switch.go b/_content/tour/flowcontrol/switch.go index 065db3d1fd..143cad79cc 100644 --- a/_content/tour/flowcontrol/switch.go +++ b/_content/tour/flowcontrol/switch.go @@ -11,7 +11,7 @@ func main() { fmt.Print("Go runs on ") switch os := runtime.GOOS; os { case "darwin": - fmt.Println("OS X.") + fmt.Println("macOS.") case "linux": fmt.Println("Linux.") default: