From 9031f952e2b17752f4eb716d4d96575026ce5338 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Tue, 27 Mar 2012 12:46:46 +1100 Subject: [PATCH] doc: remove cov and prof from /ref/cmd Update #3400 R=golang-dev, r CC=golang-dev https://golang.org/cl/5921044 --- doc/reference-cmd.html | 38 ++++++++++++-------------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/doc/reference-cmd.html b/doc/reference-cmd.html index 442df0846b0..b2cb2efa047 100644 --- a/doc/reference-cmd.html +++ b/doc/reference-cmd.html @@ -10,27 +10,25 @@ by the go program.

-The most common way to run these programs is as a subcommand of the go -program, -for instance as "go fmt". Run like this, the command operates on complete -packages of Go source code, with the go program invoking the underlying binary -with arguments appropriate to package-level processing. +The most common way to run these programs is as a subcommand of the go program, +for instance as go fmt. Run like this, the command operates on +complete packages of Go source code, with the go program invoking the +underlying binary with arguments appropriate to package-level processing.

The programs can also be run as stand-alone binaries, with unmodified arguments, -using the go tool subcommand, such as "go tool vet". -This style of invocation allows, for instance, checking a single source file rather than -an entire package: "go tool vet myprogram.go" as compared to -"go vet mypackage". -Some of the commands, such as prof and yacc, are accessible -only through the go tool subcommand. +using the go tool subcommand, such as go tool vet. +This style of invocation allows, for instance, checking a single source file +rather than an entire package: go tool vet myprogram.go as +compared to go vet mypackage. +Some of the commands, such as yacc, are accessible only through +the go tool subcommand.

-Finally, two of the commands, fmt and -doc, are also installed as regular binaries called -gofmt and godoc +Finally, two of the commands, fmt and doc, are also +installed as regular binaries called gofmt and godoc because they are so often referenced.

@@ -63,12 +61,6 @@ details. Cgo enables the creation of Go packages that call C code. - -cov -     -Cov is a rudimentary code coverage tool. - - fix      @@ -90,12 +82,6 @@ an independent godoc command with more general options gofmt command with more general options. - -prof -     -Prof is a rudimentary real-time profiler. - - vet