pkg/stdcopy: fix missing alias for stdcopy.Systemerr

This was missed in 20d594fb79

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-07-23 00:13:47 +02:00
parent 01c7b4233c
commit 4859497098

View File

@@ -13,9 +13,10 @@ import (
type StdType = stdcopy.StdType
const (
Stdin = stdcopy.Stdin // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
Stdout = stdcopy.Stdout // Deprecated: use [stdcopy.Stdout]. This alias will be removed in the next release.
Stderr = stdcopy.Stderr // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
Stdin = stdcopy.Stdin // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
Stdout = stdcopy.Stdout // Deprecated: use [stdcopy.Stdout]. This alias will be removed in the next release.
Stderr = stdcopy.Stderr // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
Systemerr = stdcopy.Systemerr // Deprecated: use [stdcopy.Systemerr]. This alias will be removed in the next release.
)
// NewStdWriter instantiates a new Writer.