From bd405e0f93b1b8d35934f28b6d6bb324c8808c8d Mon Sep 17 00:00:00 2001 From: ImVexed Date: Fri, 4 Oct 2019 18:59:47 -0500 Subject: [PATCH] q/a --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f5c39eb..3d068f1 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ import ( ) func main() { - // Any static asset packer of your liking (ex. fileb0x) + // Any static asset packer of your liking (ex. fileb0x) fileHandler := http.FileServer(webfiles.HTTP) cfg := &muon.Config{ @@ -53,10 +53,10 @@ func main() { m := muon.New(cfg, fileHandler) - // Expose our `add` function to the JS runtime + // Expose our `add` function to the JS runtime m.Bind("add", add) - // Show the Window and start the Runtime + // Show the Window and start the Runtime if err := m.Start(); err != nil { panic(err) }