diff --git a/tpl/hugo/init.go b/tpl/hugo/init.go index e5c7c0f2..1556b759 100644 --- a/tpl/hugo/init.go +++ b/tpl/hugo/init.go @@ -11,7 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -package site +// Package hugo provides template functions for accessing the Site Hugo object. +package hugo import ( "github.com/gohugoio/hugo/deps" diff --git a/tpl/hugo/init_test.go b/tpl/hugo/init_test.go index 60612761..128f6fc1 100644 --- a/tpl/hugo/init_test.go +++ b/tpl/hugo/init_test.go @@ -11,7 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package site +package hugo import ( "testing" diff --git a/tpl/reflect/init.go b/tpl/reflect/init.go index 4c639577..6ff3f809 100644 --- a/tpl/reflect/init.go +++ b/tpl/reflect/init.go @@ -11,6 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +// Package reflect provides template functions for run-time object reflection. package reflect import ( diff --git a/tpl/site/init.go b/tpl/site/init.go index 4f5df0b0..48713bb3 100644 --- a/tpl/site/init.go +++ b/tpl/site/init.go @@ -11,6 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +// Package site provides template functions for accessing the Site object. package site import (