Skip to content

Commit

Permalink
[codespell]: Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdosch authored and maaslalani committed Nov 3, 2022
1 parent 741f2d3 commit 2d10416
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion commands.go
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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.

Expand Down
2 changes: 1 addition & 1 deletion tutorials/commands/README.md
Expand Up @@ -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
Expand Down

0 comments on commit 2d10416

Please sign in to comment.