Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
panakour committed Mar 8, 2019
1 parent f0b66a6 commit 0330ee4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion di/v1/di.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
)

// Greet sends a personalised greetinb to writer
// Greet sends a personalised greeting to writer
func Greet(writer io.Writer, name string) {
fmt.Fprintf(writer, "Hello, %s", name)
}
Expand Down
2 changes: 1 addition & 1 deletion di/v2/di.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
)

// Greet sends a personalised greetinb to writer
// Greet sends a personalised greeting to writer
func Greet(writer io.Writer, name string) {
fmt.Fprintf(writer, "Hello, %s", name)
}
Expand Down

0 comments on commit 0330ee4

Please sign in to comment.