hcl: add package comments

This commit is contained in:
Fatih Arslan 2015-10-25 18:14:16 +03:00
parent ad50ec5933
commit d94e8e9409
4 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// Package ast declares the types used to represent syntax trees for HCL
// (HashiCorp Configuration Language)
package ast
import "github.com/fatih/hcl/token"

View File

@ -1,3 +1,5 @@
// Package parser implements a parser for HCL (HashiCorp Configuration
// Language)
package parser
import (

View File

@ -1,3 +1,4 @@
// Package printer implements printing of AST nodes to HCL format.
package printer
import (

View File

@ -1,3 +1,5 @@
// Package token defines constants representing the lexical tokens for HCL
// (HashiCorp Configuration Language)
package token
import (