aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/container.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-03 01:49:27 +0900
committerOphestra <cat@gensokyo.uk>2025-11-03 01:49:27 +0900
commitae66b3d2fb2f1f65f6ca8932e8044114e609d0b4 (patch)
tree3079bfec79b4ac5aada225bfa0da4e631d128741 /container/container.go
parent149bc3671a499cce0b5719d7396355fabfa7fc2a (diff)
message: rename NewMsg to New
Should have done this when relocating this from container. Now is a good time to rename it before v0.3.x. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/container.go')
-rw-r--r--container/container.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/container/container.go b/container/container.go
index 3ba87dad..1e23897d 100644
--- a/container/container.go
+++ b/container/container.go
@@ -404,7 +404,7 @@ func (p *Container) ProcessState() *os.ProcessState {
// New returns the address to a new instance of [Container] that requires further initialisation before use.
func New(ctx context.Context, msg message.Msg) *Container {
if msg == nil {
- msg = message.NewMsg(nil)
+ msg = message.New(nil)
}
p := &Container{ctx: ctx, msg: msg, Params: Params{Ops: new(Ops)}}