Skip to content

Commit 2e26084

Browse files
committed
Fix comment typos
1 parent f2a3cdd commit 2e26084

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
type (
19-
// Client is the command client data structure for all goa service clients.
19+
// Client is the common client data structure for all goa service clients.
2020
Client struct {
2121
// Client is the underlying http client.
2222
*http.Client

middleware.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type (
1717
//
1818
// - a goa middleware: goa.Middleware or func(goa.Handler) goa.Handler
1919
//
20-
// - a goa handler: goa.Handler or func(*goa.Context) error
20+
// - a goa handler: goa.Handler or func(context.Context, http.ResponseWriter, *http.Request) error
2121
//
2222
// - an http middleware: func(http.Handler) http.Handler
2323
//

0 commit comments

Comments
 (0)