aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Matloob <matloob@golang.org>2021-04-14 22:05:42 -0400
committerMichael Matloob <matloob@golang.org>2021-04-15 02:06:52 +0000
commit326c632bd9d3be2b313fe1fc1f1635364d1e59bd (patch)
tree7ccb2262020468e4f97a3fab07856c09b0fe1ebf
parentd0b3891ed3d33fbacf292b399424c3b291717644 (diff)
downloadgo-x-proposal-326c632bd9d3be2b313fe1fc1f1635364d1e59bd.tar.xz
design/draft-workspace.md: fix formatting to render propoerly on gitiles
Change-Id: Ifd3b905fe31079012a023aaf4c86cbc0405a9841 Reviewed-on: https://go-review.googlesource.com/c/proposal/+/310289 Trust: Michael Matloob <matloob@golang.org> Run-TryBot: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Matloob <matloob@golang.org>
-rw-r--r--design/draft-workspace.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/design/draft-workspace.md b/design/draft-workspace.md
index e0cc682..1e15135 100644
--- a/design/draft-workspace.md
+++ b/design/draft-workspace.md
@@ -21,24 +21,24 @@ These terms are used often in this document. The
[Go Modules Reference](https://golang.org/ref/mod) and its
[Glossary](https://golang.org/ref/mod#glossary) provide more detail.
-* **_Main_ modules:** The module the user is working in. Before this
+* ***Main*** **modules**: The module the user is working in. Before this
proposal, this is the single module containing the directory where the `go`
command is invoked. This module is used as the starting point when running
MVS. This proposal proposes allowing multiple main modules.
-* **_Module version_:** From the perspective of the go command, a module
+* ***Module version***: From the perspective of the go command, a module
version is a particular instance of a module. This can be a released version
or pseudo version of a module, or a directory with a go.mod file.
-* **_Build list_:** The _build list_ is the list of _module versions_ used for
+* ***Build list***: The _build list_ is the list of _module versions_ used for
a build command such as go build, go list, or go test. The build list is
determined from the main module's go.mod file and go.mod files in
transitively required modules using minimal version selection. The build
list contains versions for all modules in the module graph, not just those
relevant to a specific command.
-* **_MVS_ or _Minimal Version Selection_**: The algorithm used to determine
+* ***MVS*** **or** ***Minimal Version Selection***: The algorithm used to determine
the versions of all modules that will be used in a build. See the
[Minimal Version Selection](https://golang.org/ref/mod#minimal-version-selection)
section in the Go Modules Reference for more information.
-* **_mode_**: This document references module _mode_ and workspace _mode_. The
+* ***mode***: This document references module _mode_ and workspace _mode_. The
modes are the different ways the `go` command determines which modules and
packages it's building and how dependencies are resolved. For example the
`-mod=readonly` mode uses the versions of the modules listed in the `go.mod`