s/kr/creack/ in README

Signed-off-by: Guillaume J. Charmes <guillaume@charmes.net>
This commit is contained in:
Guillaume J. Charmes
2019-06-29 10:59:02 -04:00
parent 09f9379b91
commit 8a22c94093
2 changed files with 3 additions and 3 deletions

View File

View File

@@ -4,7 +4,7 @@ Pty is a Go package for using unix pseudo-terminals.
## Install
go get github.com/kr/pty
go get github.com/creack/pty
## Example
@@ -14,7 +14,7 @@ Pty is a Go package for using unix pseudo-terminals.
package main
import (
"github.com/kr/pty"
"github.com/creack/pty"
"io"
"os"
"os/exec"
@@ -50,7 +50,7 @@ import (
"os/signal"
"syscall"
"github.com/kr/pty"
"github.com/creack/pty"
"golang.org/x/crypto/ssh/terminal"
)