Skip to content

Commit 726c53e

Browse files
committed
stembuild: nit - fix comment style
1 parent 0bc987f commit 726c53e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stembuild/package_stemcell/packager/vmdk_packager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ func (r *CancelReader) Read(p []byte) (int, error) {
6464
}
6565
}
6666

67-
// returns a io.Writer that returns an error when VmdkPackager c is stopped
67+
// Writer returns a io.Writer that returns an error when VmdkPackager c is stopped
6868
func (c *VmdkPackager) Writer(w io.Writer) *CancelWriter {
6969
return &CancelWriter{w: w, stop: c.Stop}
7070
}
7171

72-
// returns a io.Reader that returns an error when VmdkPackager c is stopped
72+
// Reader returns a io.Reader that returns an error when VmdkPackager c is stopped
7373
func (c *VmdkPackager) Reader(r io.Reader) *CancelReader {
7474
return &CancelReader{r: r, stop: c.Stop}
7575
}

0 commit comments

Comments
 (0)