We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90c3e61 commit f8d2854Copy full SHA for f8d2854
_content/doc/tutorial/workspaces.md
@@ -177,7 +177,7 @@ add a new function to the `stringutil` package that we can use instead of `Rever
177
178
use (
179
./hello
180
- ./example
+ example
181
)
182
```
183
@@ -230,7 +230,7 @@ add a new function to the `stringutil` package that we can use instead of `Rever
230
From the workspace directory, run
231
232
233
- $ go run example/hello
+ $ go run example.com/hello
234
HELLO
235
236
@@ -256,7 +256,7 @@ add a new function to the `stringutil` package that we can use instead of `Rever
256
257
258
cd hello
259
- go get example.com/dep@v0.1.0
+ go get golang.org/x/example@v0.1.0
260
261
262
That way, the `go` command can properly resolve the modules outside the workspace.
0 commit comments