From 6cf355fb611ecbaabb7db956ec152624dc841141 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Thu, 26 Nov 2015 14:57:49 +0200 Subject: [PATCH] Use Go convention of docs with "Package" prefix --- hcl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcl.go b/hcl.go index 14bd9ba..575a20b 100644 --- a/hcl.go +++ b/hcl.go @@ -1,4 +1,4 @@ -// hcl is a package for decoding HCL into usable Go structures. +// Package hcl decodes HCL into usable Go structures. // // hcl input can come in either pure HCL format or JSON format. // It can be parsed into an AST, and then decoded into a structure,