diff options
author | siddharth <s@ricketyspace.net> | 2022-05-22 19:11:41 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2022-05-22 19:11:41 -0400 |
commit | add80a9eb1d5b6692f5762532fee3c95a826a266 (patch) | |
tree | 712b2e81e9a4da38a8c24a1c3c2ff81ee95727db /main.go | |
parent | 1ae67bc9f8382c6da7047e88af6648d71c3c73f3 (diff) |
peach: update comments
lowercase everything.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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. |