Skip to content

Commit fd76b8c

Browse files
authored
Merge pull request #20 from checkaayush/fixTypo
Fix couple of typos in stringsvc
2 parents 18e65cd + db974b8 commit fd76b8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_src/examples/stringsvc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ $ curl -XPOST -d'{"s":"hello, world"}' localhost:8080/count
195195

196196
No service can be considered production-ready without thorough logging and instrumentation.
197197

198-
## Seperation of concerns
198+
## Separation of concerns
199199

200-
Separating each layer of the call graph into individual files makes a go-kit project easier to read as you increase the number of service endpoints. Our first example [stringsvc1](https://github.com/go-kit/kit/blob/master/examples/stringsvc1) had all of these layers in a single main file. Before we had more complexity separate your code into the following files and leave all remaining code in main.go
200+
Separating each layer of the call graph into individual files makes a go-kit project easier to read as you increase the number of service endpoints. Our first example [stringsvc1](https://github.com/go-kit/kit/blob/master/examples/stringsvc1) had all of these layers in a single main file. Before we add more complexity, let's separate our code into the following files and leave all remaining code in main.go
201201

202202
Place your **services** into a service.go file with the following functions and types.
203203

0 commit comments

Comments
 (0)