diff --git a/content/tips/go-mod-proxy.md b/content/tips/go-mod-proxy.md index d1390ad..5f652bd 100644 --- a/content/tips/go-mod-proxy.md +++ b/content/tips/go-mod-proxy.md @@ -13,7 +13,7 @@ On your internal host (such as your work machine), run the following: GOPRIVATE=git.company.com GOMODCACHE=~/go goproxy server --address localhost:9981 ``` -On external host (such as a network isolated Linux VM): +On your external host (such as a network isolated Linux VM): ```shell_session ssh -L 9981:localhost:9981 $INTERNALHOST &