Skip to content

Commit 93f6f34

Browse files
committed
misspell
1 parent 4bedc13 commit 93f6f34

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

playground/internal/gcpdial/gcpdial.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"google.golang.org/api/compute/v1"
2222
)
2323

24+
// Dialer type
2425
type Dialer struct {
2526
lister instanceLister
2627

playground/internal/gcpdial/gcpdialtool/gcpdialtool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// The gcpdialtool command is an interactive validation tool for the
6-
// gcpdial packge.
6+
// gcpdial package.
77
package main
88

99
import (

playground/sandbox/sandbox.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ var (
7575
runSem chan struct{}
7676
)
7777

78+
// Container type
7879
type Container struct {
7980
name string
8081

@@ -88,6 +89,7 @@ type Container struct {
8889
waitErr chan error // 1-buffered; receives error from WaitOrStop(..., cmd, ...)
8990
}
9091

92+
// Close implements io.Closer.
9193
func (c *Container) Close() {
9294
setContainerWanted(c.name, false)
9395

@@ -97,6 +99,7 @@ func (c *Container) Close() {
9799
}
98100
}
99101

102+
// Wait waits command finished.
100103
func (c *Container) Wait() error {
101104
err := <-c.waitErr
102105
c.waitErr <- err

playground/vet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
// Deprecated: this is the handler for the legacy /vet endpoint; use
2222
// the /compile (compileAndRun) handler instead with the WithVet
2323
// boolean set. This code path doesn't support modules and only exists
24-
// as a temporary compatiblity bridge to older javascript clients.
24+
// as a temporary compatibility bridge to older javascript clients.
2525
func vetCheck(ctx context.Context, req *request) (*response, error) {
2626
return &response{}, nil
2727
tmpDir, err := ioutil.TempDir("", "vet")

0 commit comments

Comments
 (0)