diff --git a/tutorials/commands/README.md b/tutorials/commands/README.md index 3c43bc7..661f83b 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -189,7 +189,7 @@ that returns a command. For example: ```go func cmdWithArg(id int) tea.Cmd { return func() tea.Msg { - return someMsg{id: int} + return someMsg{id: id} } } ```