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)) |