From a843a33ba8e948440ea3b22a48775a7493fa5737 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Mon, 6 Aug 2018 16:12:22 +0900 Subject: [PATCH] Fix typo --- service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.go b/service.go index 7ea07cc..53a161f 100644 --- a/service.go +++ b/service.go @@ -1,6 +1,6 @@ package typhon -// A Service is a function that takes a request and produces a response. Services are used symetrically in +// A Service is a function that takes a request and produces a response. Services are used symmetrically in // both clients and servers. type Service func(req Request) Response