From 8a22c94093561323bff9eb908ad993c38ee48aa3 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Sat, 29 Jun 2019 10:59:02 -0400 Subject: [PATCH] s/kr/creack/ in README Signed-off-by: Guillaume J. Charmes --- License => LICENSE | 0 README.md | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename License => LICENSE (100%) diff --git a/License b/LICENSE similarity index 100% rename from License rename to LICENSE diff --git a/README.md b/README.md index f9bb002..5275014 100644 --- a/README.md +++ b/README.md @@ -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" )