From e31ce1067f06a9b5205dfc9746e86c9dd8bd007a Mon Sep 17 00:00:00 2001 From: Craig Rodrigues Date: Mon, 2 Dec 2024 15:02:23 -0800 Subject: [PATCH] Add missing argument to `go mod init` (#338) Co-authored-by: Alex Garnett --- docs/getting_started/go/dev_environment/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/go/dev_environment/index.md b/docs/getting_started/go/dev_environment/index.md index f3447468..7f85a74b 100644 --- a/docs/getting_started/go/dev_environment/index.md +++ b/docs/getting_started/go/dev_environment/index.md @@ -48,7 +48,7 @@ cd goproject Then, initialize a Go project in that directory: ```command -go mod init +go mod init goproject/app ``` Finally, install the Temporal SDK with `go get`: