aboutsummaryrefslogtreecommitdiff
path: root/src/plugin
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2017-09-23 11:55:02 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2017-12-12 00:59:50 +0000
commit3f5c1adeb8951762a1b0c35194ca0ad6aca25e18 (patch)
tree675c116a6635a5cb3856cb0f26e44b208a3c27a6 /src/plugin
parent1055dfce40da4852add029c8a0e7312dff079507 (diff)
downloadgo-3f5c1adeb8951762a1b0c35194ca0ad6aca25e18.tar.gz
go-3f5c1adeb8951762a1b0c35194ca0ad6aca25e18.zip
plugin: document support for macOS
All plugins issues I would call bugs now closed, so (with some amount of optimism) update the plugin documentation. Change-Id: Ia421c18a166d7cdf599ac86f2336541c1ef42a0d Reviewed-on: https://go-review.googlesource.com/65670 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/plugin')
-rw-r--r--src/plugin/plugin.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin/plugin.go b/src/plugin/plugin.go
index c37b65fd82..5506e95692 100644
--- a/src/plugin/plugin.go
+++ b/src/plugin/plugin.go
@@ -13,8 +13,8 @@
// already part of the program are called. The main function is not run.
// A plugin is only initialized once, and cannot be closed.
//
-// The plugin support is currently incomplete, only supports Linux,
-// and has known bugs. Please report any issues.
+// Currently plugins are only supported on Linux and macOS.
+// Please report any issues.
package plugin
// Plugin is a loaded Go plugin.