Skip to content

Commit 6baf05b

Browse files
committed
fix typo on readme and godoc
1 parent c8c8bae commit 6baf05b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $ go get -u github.com/mercari/tfnotify
4444
2. Bind parsed results to Go templates
4545
3. Notify it to any platform (e.g. GitHub) as you like
4646

47-
Detailed specifications such as templates and notification destinations can be customized from the configration files (described later).
47+
Detailed specifications such as templates and notification destinations can be customized from the configuration files (described later).
4848

4949
## Usage
5050

terraform/template.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ func generateOutput(kind, template string, data map[string]interface{}, useRawOu
219219
return b.String(), nil
220220
}
221221

222-
// Execute binds the execution result of terraform command into tepmlate
222+
// Execute binds the execution result of terraform command into template
223223
func (t *DefaultTemplate) Execute() (string, error) {
224224
data := map[string]interface{}{
225225
"Title": t.Title,
@@ -237,7 +237,7 @@ func (t *DefaultTemplate) Execute() (string, error) {
237237
return resp, nil
238238
}
239239

240-
// Execute binds the execution result of terraform fmt into tepmlate
240+
// Execute binds the execution result of terraform fmt into template
241241
func (t *FmtTemplate) Execute() (string, error) {
242242
data := map[string]interface{}{
243243
"Title": t.Title,
@@ -255,7 +255,7 @@ func (t *FmtTemplate) Execute() (string, error) {
255255
return resp, nil
256256
}
257257

258-
// Execute binds the execution result of terraform plan into tepmlate
258+
// Execute binds the execution result of terraform plan into template
259259
func (t *PlanTemplate) Execute() (string, error) {
260260
data := map[string]interface{}{
261261
"Title": t.Title,
@@ -291,7 +291,7 @@ func (t *DestroyWarningTemplate) Execute() (string, error) {
291291
return resp, nil
292292
}
293293

294-
// Execute binds the execution result of terraform apply into tepmlate
294+
// Execute binds the execution result of terraform apply into template
295295
func (t *ApplyTemplate) Execute() (string, error) {
296296
data := map[string]interface{}{
297297
"Title": t.Title,

0 commit comments

Comments
 (0)