Also fix package name in tpl/templates.
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package cast provides template functions for data type conversions.
 package cast
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package collections provides template functions for manipulating collections
+// such as arrays, maps, and slices.
 package collections
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package compare provides template functions for comparing values.
 package compare
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package crypto provides template functions for cryptographic operations.
 package crypto
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package data provides template functions for working with external data
+// sources.
 package data
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package encoding provides template functions for encoding content.
 package encoding
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package fmt provides template functions for formatting strings.
 package fmt
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package images provides template functions for manipulating images.
 package images
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package inflect provides template functions for the inflection of words.
 package inflect
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package lang provides template functions for content internationalization.
 package lang
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package math provides template functions for mathmatical operations.
 package math
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package os provides template functions for interacting with the operating
+// system.
 package os
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package partials provides template functions for working with reusable
+// templates.
 package partials
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package path provides template functions for manipulating paths.
 package path
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package resources provides template functions for working with resources.
 package resources
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package safe provides template functions for escaping untrusted content or
+// encapsulating trusted content.
 package safe
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package strings provides template functions for manipulating strings.
 package strings
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-package partials
+package templates
 
 import (
        "github.com/gohugoio/hugo/deps"
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-package partials
+package templates
 
 import (
        "testing"
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-package partials
+// Package templates provides template functions for working with templates.
+package templates
 
 import (
        "github.com/gohugoio/hugo/deps"
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package time provides template functions for measuring and displaying time.
 package time
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package transform provides template functions for transforming content.
 package transform
 
 import (
 
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+// Package urls provides template functions to deal with URLs.
 package urls
 
 import (