aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/io/multi_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/io/multi_test.go')
-rw-r--r--libgo/go/io/multi_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/io/multi_test.go b/libgo/go/io/multi_test.go
index 4acc51a..9aad954 100644
--- a/libgo/go/io/multi_test.go
+++ b/libgo/go/io/multi_test.go
@@ -77,7 +77,7 @@ func TestMultiWriter_String(t *testing.T) {
testMultiWriter(t, new(bytes.Buffer))
}
-// test that a multiWriter.WriteString calls results in at most 1 allocation,
+// Test that a multiWriter.WriteString calls results in at most 1 allocation,
// even if multiple targets don't support WriteString.
func TestMultiWriter_WriteStringSingleAlloc(t *testing.T) {
t.Skip("skipping on gccgo until we have escape analysis")
@@ -150,7 +150,7 @@ func (f writerFunc) Write(p []byte) (int, error) {
return f(p)
}
-// Test that MultiWriter properly flattens chained multiWriters,
+// Test that MultiWriter properly flattens chained multiWriters.
func TestMultiWriterSingleChainFlatten(t *testing.T) {
pc := make([]uintptr, 1000) // 1000 should fit the full stack
n := runtime.Callers(0, pc)