Skip to content

Commit 7da2831

Browse files
author
Joshua Anderson
committed
fix(builder): fix spelling mistakes
1 parent b24dd75 commit 7da2831

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builder/src/yaml2json-procfile.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func main() {
1212
if fi, _ := os.Stdin.Stat(); fi.Mode()&os.ModeNamedPipe == 0 {
13-
fmt.Println("this app only works using the stdout of another process")
13+
fmt.Println("this app requires the stdout of another process")
1414
os.Exit(1)
1515
}
1616

@@ -24,7 +24,7 @@ func main() {
2424
procfile, err := builder.YamlToJSON(bytes)
2525

2626
if err != nil {
27-
fmt.Println("the procfile does not contains a valid yaml structure")
27+
fmt.Println("the Procfile is not valid yaml")
2828
os.Exit(1)
2929
}
3030

0 commit comments

Comments
 (0)