From 298646b31283f7fbf05d62bffe423155f7611dfe Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Tue, 21 Feb 2023 10:04:23 -0500 Subject: [PATCH] docs: separate go get and import instructions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b80dbd0..2e82a08 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,14 @@ readable logging with batteries included. ## Usage -Use `go get` to download the dependency, and then `import` it in your Go files: +Use `go get` to download the dependency. ```bash go get github.com/charmbracelet/log@latest ``` +Then, `import` it in your Go files: + ```go import "github.com/charmbracelet/log" ```