From 1a90ac86203010121bb60c2776e2fc5092cdcd24 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 29 Feb 2024 14:54:47 -0600 Subject: [PATCH] Add a 'your' --- content/tips/go-mod-proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &