diff --git a/content/home/getting-started.md b/content/home/getting-started.md index 351f873..9685091 100644 --- a/content/home/getting-started.md +++ b/content/home/getting-started.md @@ -36,7 +36,7 @@ func main() { Cobra provides its own program that will create your application and add any commands you want. It's the easiest way to incorporate Cobra into your application. -[Here](https://github.com/spf13/cobra/blob/master/cobra/README.md) you can find more information about it. +[Here](https://github.com/spf13/cobra-cli/blob/main/README.md) you can find more information about it. ## Using the Cobra Library diff --git a/content/home/install.md b/content/home/install.md index edd6c00..bcf0031 100644 --- a/content/home/install.md +++ b/content/home/install.md @@ -3,11 +3,10 @@ title: "Install" weight: 20 --- -Using Cobra is easy. First, use `go get` to install the latest version -of the library. This command will install the `cobra` generator executable -along with the library and its dependencies: +Using Cobra is easy. Use `go get` to install the latest version +of the library and its dependencies: - go get -u github.com/spf13/cobra/cobra + go get -u github.com/spf13/cobra Next, include Cobra in your application: