From 2d10416631fa15f6e60fd07d5549eb31370fa072 Mon Sep 17 00:00:00 2001 From: Martin Dosch Date: Thu, 3 Nov 2022 17:47:38 +0100 Subject: [PATCH] [codespell]: Fix typos. --- commands.go | 2 +- examples/pipe/main.go | 2 +- tutorials/commands/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands.go b/commands.go index 10444e0893..7c30a1216d 100644 --- a/commands.go +++ b/commands.go @@ -40,7 +40,7 @@ func Sequence(cmds ...Cmd) Cmd { } } -// sequenceMsg is used interally to run the given commands in order. +// sequenceMsg is used internally to run the given commands in order. type sequenceMsg []Cmd // Every is a command that ticks in sync with the system clock. So, if you diff --git a/examples/pipe/main.go b/examples/pipe/main.go index b60aa7e799..1fce2fce84 100644 --- a/examples/pipe/main.go +++ b/examples/pipe/main.go @@ -1,7 +1,7 @@ package main // An example illustrating how to pipe in data to a Bubble Tea application. -// Moreso, this serves as proof that Bubble Tea will automatically listen for +// More so, this serves as proof that Bubble Tea will automatically listen for // keystrokes when input is not a TTY, such as when data is piped or redirected // in. diff --git a/tutorials/commands/README.md b/tutorials/commands/README.md index 88080f8c4e..c1d81e3bb2 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -124,7 +124,7 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { case tea.KeyMsg: // Ctrl+c exits. Even with short running programs it's good to have - // a quit key, just incase your logic is off. Users will be very + // a quit key, just in case your logic is off. Users will be very // annoyed if they can't exit. if msg.Type == tea.KeyCtrlC { return m, tea.Quit