Skip to content

_content/doc/tutorial: fix inaccuracies in workspace tutorial #136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _content/doc/tutorial/workspaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ add a new function to the `stringutil` package that we can use instead of `Rever
From the workspace directory, run

```
$ go run example/hello
$ go run example.com/hello
HELLO
```

Expand All @@ -256,7 +256,7 @@ add a new function to the `stringutil` package that we can use instead of `Rever

```
cd hello
go get example.com/dep@v0.1.0
go get golang.org/x/example@v0.1.0
```

That way, the `go` command can properly resolve the modules outside the workspace.
Expand Down