revid: fixed typos in revid_test.go

This commit is contained in:
Saxon 2019-04-24 13:01:29 +09:30
parent 74379ea047
commit 3ab0be4a7a
1 changed files with 3 additions and 3 deletions

View File

@ -96,7 +96,7 @@ func (tl *testLogger) Log(level int8, msg string, params ...interface{}) {
// tstMtsEncoder emulates the mts.Encoder to the extent of the dst field.
// This will allow access to the dst to check that it has been set corrctly.
type tstMtsEncoder struct {
// dst is here soley to detect the type stored in the encoder.
// dst is here solely to detect the type stored in the encoder.
// No data is written to dst.
dst io.WriteCloser
}
@ -107,7 +107,7 @@ func (e *tstMtsEncoder) Close() error { return nil }
// tstFlvEncoder emulates the flv.Encoder to the extent of the dst field.
// This will allow access to the dst to check that it has been set corrctly.
type tstFlvEncoder struct {
// dst is here soley to detect the type stored in the encoder.
// dst is here solely to detect the type stored in the encoder.
// No data is written to dst.
dst io.WriteCloser
}
@ -118,7 +118,7 @@ func (e *tstFlvEncoder) Close() error { return nil }
// dummyMultiWriter emulates the MultiWriter provided by std lib, so that we
// can access the destinations.
type dummyMultiWriter struct {
// dst is here soley to detect the types stored in the multiWriter.
// dst is here solely to detect the types stored in the multiWriter.
// No data is written to dst.
dst []io.WriteCloser
}