diff --git a/README.md b/README.md index 977972a..eb163f6 100644 --- a/README.md +++ b/README.md @@ -16,20 +16,18 @@ Lestrade is a small Go library that allows you to print text in different colors ## Usage: ```go - package main import ( - "fmt" - "github.com/BlyDoesCoding/lestrade" + lestrade "github.com/BlyDoesCoding/Lestrade" ) func main() { - fmt.Println(lestrade.Red("This is red text")) - fmt.Println(lestrade.Green("This is green text")) - fmt.Println(lestrade.Blue("This is blue text")) + + lestrade.PrintRainbow("how are you?") } + ``` ## Contributing