From ca294ceefe8ddbdeb60653eff1b2ba28a60d730d Mon Sep 17 00:00:00 2001 From: Tom Busby Date: Thu, 12 Aug 2021 17:47:24 +0200 Subject: [PATCH] Add output of `go mod tidy` to Quick Start guide. --- Modules.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules.md b/Modules.md index ab540b35..5f8304ba 100644 --- a/Modules.md +++ b/Modules.md @@ -162,9 +162,10 @@ EOF Build and run: ``` $ go mod tidy +go: finding module for package rsc.io/quote +go: found rsc.io/quote in rsc.io/quote v1.5.2 $ go build -o hello $ ./hello - Hello, world. ```