hcl: add package comments
This commit is contained in:
parent
ad50ec5933
commit
d94e8e9409
@ -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"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// Package parser implements a parser for HCL (HashiCorp Configuration
|
||||
// Language)
|
||||
package parser
|
||||
|
||||
import (
|
||||
|
@ -1,3 +1,4 @@
|
||||
// Package printer implements printing of AST nodes to HCL format.
|
||||
package printer
|
||||
|
||||
import (
|
||||
|
@ -1,3 +1,5 @@
|
||||
// Package token defines constants representing the lexical tokens for HCL
|
||||
// (HashiCorp Configuration Language)
|
||||
package token
|
||||
|
||||
import (
|
||||
|
Loading…
Reference in New Issue
Block a user