From a9786163289c46f5c91be13349e87f425db8af0a Mon Sep 17 00:00:00 2001 From: Daniel Lohse Date: Sun, 23 Apr 2017 19:49:05 +0200 Subject: [PATCH] Fix typo in addsvc's doc block The server binary is available in `cmd/addsvc`, not in `cmd/addsrv`. --- examples/addsvc/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/addsvc/doc.go b/examples/addsvc/doc.go index 4dd8414f5..584d072cb 100644 --- a/examples/addsvc/doc.go +++ b/examples/addsvc/doc.go @@ -1,5 +1,5 @@ // Package addsvc is an example microservice, useful for education. It can sum // integers and concatenate strings. A client library is available in the client -// subdirectory. A server binary is available in cmd/addsrv. An example client +// subdirectory. A server binary is available in cmd/addsvc. An example client // binary is available in cmd/addcli. package addsvc