From aa0aeadf64d2faa74bb2ac7ec3f76a2c9a155435 Mon Sep 17 00:00:00 2001
From: thepudds <20628140+thepudds@users.noreply.github.com>
Date: Fri, 21 Dec 2018 16:06:32 -0500
Subject: [PATCH] Revert
78c6ef494b95fc466759810d36ac40ff38d83143...9f41311e201301a491c8a55f125eeb73c102d439
on Modules
---
Modules.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Modules.md b/Modules.md
index dffef484..7ab7f089 100644
--- a/Modules.md
+++ b/Modules.md
@@ -127,7 +127,7 @@ A brief tour of other common functionality you might use:
| Command | Description |
| ------------------------------- | ----------------------- |
-| `go list -m all` | View final versions that will be used in a build for all direct and indirect dependencies ([details](https://github.com/golang/go/wiki/Modules#version-selection)) |
+| `go list -m all` | View final versions that will be used in a build for all direct and indirect dependencies ([details](https://github.com/golang/go/wiki/Modules#version-selection)) |
| `go list -u -m all`| View available minor and patch upgrades for all direct and indirect dependencies ([details](https://github.com/golang/go/wiki/Modules#how-to-upgrade-and-downgrade-dependencies)) |
| `go get -u`
`go get -u=patch` | Update all direct and indirect dependencies to latest minor or patch upgrades ([details](https://github.com/golang/go/wiki/Modules#how-to-upgrade-and-downgrade-dependencies)) |
| `go build ./...`
`go test ./...` | Build or test all packages in the module when run from the module root directory ([details](https://github.com/golang/go/wiki/Modules#how-to-define-a-module)) |