mirror of
https://github.com/golang/go
synced 2024-11-06 05:26:11 -07:00
19309779ac
[This CL is part of a sequence implementing the proposal #51082. The design doc is at https://go.dev/s/godocfmt-design.] Run the updated gofmt, which reformats doc comments, on the main repository. Vendored files are excluded. For #51082. Change-Id: I7332f099b60f716295fb34719c98c04eb1a85407 Reviewed-on: https://go-review.googlesource.com/c/go/+/384268 Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
22 lines
645 B
Go
22 lines
645 B
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Dist helps bootstrap, build, and test the Go distribution.
|
|
//
|
|
// Usage:
|
|
//
|
|
// go tool dist [command]
|
|
//
|
|
// The commands are:
|
|
//
|
|
// banner print installation banner
|
|
// bootstrap rebuild everything
|
|
// clean deletes all built files
|
|
// env [-p] print environment (-p: include $PATH)
|
|
// install [dir] install individual directory
|
|
// list [-json] list all supported platforms
|
|
// test [-h] run Go test(s)
|
|
// version print Go version
|
|
package main
|