container: remove GoDoc for deprecated aliases.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-05-08 21:59:08 +02:00
parent fe403362b4
commit 7957a28859

View File

@@ -157,17 +157,6 @@ func IsValidStateString(s string) bool {
// Deprecated: use [container.WaitCondition] instead.
type WaitCondition = container.WaitCondition
// Possible WaitCondition Values.
//
// WaitConditionNotRunning (default) is used to wait for any of the non-running
// states: "created", "exited", "dead", "removing", or "removed".
//
// WaitConditionNextExit is used to wait for the next time the state changes
// to a non-running state. If the state is currently "created" or "exited",
// this would cause Wait() to block until either the container runs and exits
// or is removed.
//
// WaitConditionRemoved is used to wait for the container to be removed.
const (
// Deprecated: use [container.WaitConditionNotRunning] instead.
WaitConditionNotRunning = container.WaitConditionNotRunning