update import path

This commit is contained in:
Lynn Cyrin (they/them) 2019-10-12 00:54:37 -07:00 committed by GitHub
parent 0b26e2fa44
commit 3cf1eb69b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ $ go get github.com/urfave/cli.v2
```go ```go
... ...
import ( import (
"github.com/urfave/cli" // imports as package "cli" "github.com/urfave/cli.v2" // imports as package "cli"
) )
... ...
``` ```