1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-23 20:02:22 +00:00

Update ch4-05-grpc-hack.md

Append word modification
This commit is contained in:
simon 2020-02-14 15:53:39 +08:00 committed by GitHub
parent 5ef2ab0139
commit b396f5bc46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -293,7 +293,7 @@ func filter(ctx context.Context,
req interface{}, info *grpc.UnaryServerInfo,
handler grpc.UnaryHandler,
) (resp interface{}, err error) {
log.Println("fileter:", info)
log.Println("filter:", info)
return handler(ctx, req)
}
```