From 583cd4a928545c36ad506802e837eeccf67c7d28 Mon Sep 17 00:00:00 2001 From: Hung-I Wang Date: Tue, 3 Nov 2020 21:17:11 +0800 Subject: [PATCH] Fix a typo in README: FindBytes -> Find --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72a827e..f74de4c 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ box := packr.NewBox("./templates") html, err := box.FindString("index.html") // Get the []byte representation of a file, or an error if it doesn't exist: -html, err := box.FindBytes("index.html") +html, err := box.Find("index.html") ``` ### What is a Box?