Merge pull request #7182 from HeavenTonight/main

code cleanup
This commit is contained in:
Derek McGowan
2022-07-20 13:09:10 -07:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -46,9 +46,9 @@ const (
// Stdin stream type.
Stdin StreamType = "stdin"
// Stdout stream type.
Stdout StreamType = StreamType(runtime.Stdout)
Stdout = StreamType(runtime.Stdout)
// Stderr stream type.
Stderr StreamType = StreamType(runtime.Stderr)
Stderr = StreamType(runtime.Stderr)
)
type wgCloser struct {