Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Feb 20, 2024
1 parent 572f392 commit 259bdeb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion serial_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

const devFolder = "/dev"

var osPortFiler = regexp.MustCompile("^(cu|tty)\\..*")
var osPortFilter = regexp.MustCompile("^(cu|tty)\\..*")

const ioctlTcgetattr = unix.TIOCGETA
const ioctlTcsetattr = unix.TIOCSETA
Expand Down
2 changes: 1 addition & 1 deletion serial_freebsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

const devFolder = "/dev"

var osPortFiler = regexp.MustCompile("^(cu|tty)\\..*")
var osPortFilter = regexp.MustCompile("^(cu|tty)\\..*")

// termios manipulation functions

Expand Down
2 changes: 1 addition & 1 deletion serial_openbsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

const devFolder = "/dev"

var osPortFiler = regexp.MustCompile("^(cu|tty)\\..*")
var osPortFilter = regexp.MustCompile("^(cu|tty)\\..*")

// termios manipulation functions

Expand Down

0 comments on commit 259bdeb

Please sign in to comment.