1
0
mirror of https://github.com/golang/go synced 2024-11-18 08:14:41 -07:00

cmd/gomvpkg: add missing closing double-quote to documentation

This CL adds a missing closing double-quote to the documentation string
of gomvpkg.

Change-Id: I000fe33fb9ddc5342bbf51c36595a884d6aa4eab
Reviewed-on: https://go-review.googlesource.com/114115
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Sebastien Binet 2018-05-22 16:52:10 +02:00 committed by Brad Fitzpatrick
parent 28aef64757
commit 1937f90a1b

View File

@ -19,7 +19,7 @@ import (
var ( var (
fromFlag = flag.String("from", "", "Import path of package to be moved") fromFlag = flag.String("from", "", "Import path of package to be moved")
toFlag = flag.String("to", "", "Destination import path for package") toFlag = flag.String("to", "", "Destination import path for package")
vcsMvCmdFlag = flag.String("vcs_mv_cmd", "", `A template for the version control system's "move directory" command, e.g. "git mv {{.Src}} {{.Dst}}`) vcsMvCmdFlag = flag.String("vcs_mv_cmd", "", `A template for the version control system's "move directory" command, e.g. "git mv {{.Src}} {{.Dst}}"`)
helpFlag = flag.Bool("help", false, "show usage message") helpFlag = flag.Bool("help", false, "show usage message")
) )