Skip to content

Commit

Permalink
Fix typos (hashicorp#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
minamijoyo authored and Pam Selle committed Jul 22, 2019
1 parent 6b2feba commit 57bd5f3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ such as Ruby. HCL syntax is designed to be easily read and written by humans,
and allows _declarative_ logic to permit its use in more complex applications.

HCL is intended as a base syntax for configuration formats built
around key-value pairs and heirarchical blocks whose structure is well-defined
around key-value pairs and hierarchical blocks whose structure is well-defined
by the calling application, and this definition of the configuration structure
allows for better error messages and more convenient definition within the
calling application.
Expand Down
2 changes: 1 addition & 1 deletion ext/dynblock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ schema model provides a description of only one level of nested blocks at
a time, and thus a new schema must be provided for each additional level of
nesting.

To make this arduous process as convenient as possbile, this package provides
To make this arduous process as convenient as possible, this package provides
a helper function `WalkForEachVariables`, which returns a `WalkVariablesNode`
instance that can be used to find variables directly in a given body and also
determine which nested blocks require recursive calls. Using this mechanism
Expand Down
2 changes: 1 addition & 1 deletion guide/go_expression_eval.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ available in a ``stdlib`` package within the :go:pkg:`cty` repository, avoiding
the need for each application to re-implement basic functions for string
manipulation, list manipulation, etc. It also includes function-shaped versions
of several operations that are native operators in HCL, which should generally
*not* be exposed as functions in HCL-based configurationf formats to avoid user
*not* be exposed as functions in HCL-based configuration formats to avoid user
confusion.

You can define functions in the ``Functions`` field of :go:type:`hcl.EvalContext`:
Expand Down
2 changes: 1 addition & 1 deletion hcl/hclsyntax/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ for later evaluation by the calling application.
### Blocks

A _block_ creates a child body that is annotated with a block _type_ and
zero or more block _labels_. Blocks create a structural hierachy which can be
zero or more block _labels_. Blocks create a structural hierarchy which can be
interpreted by the calling application.

Block labels can either be quoted literal strings or naked identifiers.
Expand Down
4 changes: 2 additions & 2 deletions hcl/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ _block header schemata_:
Within a schema, it is an error to request the same attribute name twice or
to request a block type whose name is also an attribute name. While this can
in principle be supported in some syntaxes, in other syntaxes the attribute
and block namespaces are combined and so an an attribute cannot coexist with
and block namespaces are combined and so an attribute cannot coexist with
a block whose type name is identical to the attribute name.

The result of applying a body schema to a body is _body content_, which
Expand Down Expand Up @@ -497,7 +497,7 @@ producing an unknown value of the target type.

Conversion of any value _to_ the dynamic pseudo-type is a no-op. The result
is the input value, verbatim. This is the only situation where the conversion
result value is not of the the given target type.
result value is not of the given target type.

### Primitive Type Conversions

Expand Down

0 comments on commit 57bd5f3

Please sign in to comment.