From fdabac51a8c8801840679a24e371f23013b021bb Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Sun, 29 Dec 2019 13:16:34 -0700 Subject: Improve docs, especially w.r.t. placeholders and template actions --- modules.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules.go') diff --git a/modules.go b/modules.go index b036bea..46fdd3b 100644 --- a/modules.go +++ b/modules.go @@ -75,16 +75,16 @@ type ModuleInfo struct { // label is the module name, and the labels before that constitute // the namespace (or scope). // -// Thus, a module ID has the form: . +// Thus, a module ID has the form: . // // An ID with no dot has the empty namespace, which is appropriate // for app modules (these are "top-level" modules that Caddy core // loads and runs). // -// Module IDs should be lowercase and use underscore (_) instead of +// Module IDs should be lowercase and use underscores (_) instead of // spaces. // -// Example valid names: +// Examples of valid IDs: // - http // - http.handlers.file_server // - caddy.logging.encoders.json @@ -92,7 +92,7 @@ type ModuleID string // Namespace returns the namespace (or scope) portion of a module ID, // which is all but the last label of the ID. If the ID has only one -// label, then +// label, then the namespace is empty. func (id ModuleID) Namespace() string { lastDot := strings.LastIndex(string(id), ".") if lastDot < 0 { -- cgit v1.2.3