Skip to content

Commit 10374e2

Browse files
committed
testing: fix quotation marks
Change-Id: I4b816e26718ef5521afba2b200a6333373b09c58 Reviewed-on: https://go-review.googlesource.com/c/go/+/245136 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
1 parent 7f86080 commit 10374e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/testing/testing.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// Package testing provides support for automated testing of Go packages.
6-
// It is intended to be used in concert with the ``go test'' command, which automates
6+
// It is intended to be used in concert with the "go test" command, which automates
77
// execution of any function of the form
88
// func TestXxx(*testing.T)
99
// where Xxx does not start with a lowercase letter. The function name
@@ -14,8 +14,8 @@
1414
// To write a new test suite, create a file whose name ends _test.go that
1515
// contains the TestXxx functions as described here. Put the file in the same
1616
// package as the one being tested. The file will be excluded from regular
17-
// package builds but will be included when the ``go test'' command is run.
18-
// For more detail, run ``go help test'' and ``go help testflag''.
17+
// package builds but will be included when the "go test" command is run.
18+
// For more detail, run "go help test" and "go help testflag".
1919
//
2020
// A simple test function looks like this:
2121
//

0 commit comments

Comments
 (0)