From 352f1b77c40e2f2c0711244481e1cc25ae423830 Mon Sep 17 00:00:00 2001
From: komuW
Date: Wed, 5 Dec 2018 05:39:18 +0000
Subject: [PATCH] doc/go1.11: add note about go run supporting for go run pkg
or go run .
Fixes golang/go#27047
Change-Id: I0dd40201fc03e87fbc674b47bdf9315f1783d6c2
GitHub-Last-Rev: f28ab6234ade814c4bc09e26417c424c843ad57b
GitHub-Pull-Request: golang/go#27048
Reviewed-on: https://go-review.googlesource.com/c/129696
Reviewed-by: komu wairagu
Reviewed-by: Andrew Bonventre
---
doc/go1.11.html | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/doc/go1.11.html b/doc/go1.11.html
index 16b4c904cb..1d85be9fe4 100644
--- a/doc/go1.11.html
+++ b/doc/go1.11.html
@@ -400,6 +400,16 @@ details.
information.
+Run
+
+
+
+ The go
run
+ command now allows a single import path, a directory name or a
+ pattern matching a single package.
+ This allows go
run
pkg
or go
run
dir
, most importantly go
run
.
+
+
Runtime