summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-05-22 19:11:41 -0400
committersiddharth <s@ricketyspace.net>2022-05-22 19:11:41 -0400
commitadd80a9eb1d5b6692f5762532fee3c95a826a266 (patch)
tree712b2e81e9a4da38a8c24a1c3c2ff81ee95727db /main.go
parent1ae67bc9f8382c6da7047e88af6648d71c3c73f3 (diff)
peach: update comments
lowercase everything.
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.go b/main.go
index 151aebe..b3f600f 100644
--- a/main.go
+++ b/main.go
@@ -17,17 +17,17 @@ import (
"ricketyspace.net/peach/nws"
)
-// Peach port. Defaults to 8151
+// peach port. Defaults to 8151
var peachPort = flag.Int("p", 8151, "Port to run peach on")
-// Peach listen address. Set during init.
+// peach listen address. Set during init.
var peachAddr = ""
-// Holds static content.
+// holds static content.
//go:embed templates static
var peachFS embed.FS
-// HTML templates.
+// html templates.
var peachTemplates = template.Must(template.ParseFS(peachFS, "templates/*.tmpl"))
// lat,long regex.