From 0c12ac9c6905bcb012aa7c26da4dffb16e007184 Mon Sep 17 00:00:00 2001 From: mlabusch Date: Fri, 5 May 2017 11:22:43 +0200 Subject: [PATCH] [QS]: remove miss spelling --- runtime/runtime.go | 2 +- test/testrest.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/runtime.go b/runtime/runtime.go index 5f19351..2049f4a 100644 --- a/runtime/runtime.go +++ b/runtime/runtime.go @@ -1,5 +1,5 @@ // Package with supporting functionality to run the microservice package runtime -// some functionality to handle it in background which is intermeshed +// some mingled functionality to handle in background diff --git a/test/testrest.go b/test/testrest.go index 54db9e5..2bf66f6 100644 --- a/test/testrest.go +++ b/test/testrest.go @@ -60,7 +60,7 @@ func NewSession(router *goji.Mux) *Request { return &Request{router: router} } -// Function to send a request to the router and recieve the api's answer +// Function to send a request to the router and receive the api's answer func (r *Request) JSONRequest(method string, url string, body interface{}) (jsonResult interface{}, res *http.Response) { jsonObj, _ := json.Marshal(body) req, _ := http.NewRequest(method, url, bytes.NewReader(jsonObj))