Commit eb9356b7 authored by Russ Cox's avatar Russ Cox

doc/go1.11: mention import path restriction

Change-Id: I18a6915614a317adb4da710a01268b574300f0e0
Reviewed-on: https://go-review.googlesource.com/123096
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: default avatarBryan C. Mills <bcmills@google.com>
parent ec88f781
...@@ -89,6 +89,18 @@ Do not send CLs removing the interior tags from such phrases. ...@@ -89,6 +89,18 @@ Do not send CLs removing the interior tags from such phrases.
TODO: Link to intro doc. TODO: Link to intro doc.
</p> </p>
<h3 id="importpath">Import path restriction</h3>
<p>
Because Go module support assigns special meaning to the
<code>@</code> symbol in command line operations,
the <code>go</code> command now disallows the use of
import paths containing <code>@</code> symbols.
Such import paths were never allowed by <code>go</code> <code>get</code>,
so this restriction can only affect users building
custom GOPATH trees by other means.
</p>
<h3 id="gopackages">Package loading</h2> <h3 id="gopackages">Package loading</h2>
<p> <p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment