Make go.mod output more accurate for Quick Start guide

Tom Busby 2021-08-12 17:51:34 +02:00
parent 3e834920a7
commit 4124a530eb

@ -172,9 +172,10 @@ Hello, world.
The `go.mod` file was updated to include explicit versions for your dependencies, where `v1.5.2` here is a [semver](https://semver.org) tag:
```
$ cat go.mod
module github.com/my/repo
go 1.16
require rsc.io/quote v1.5.2
```