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))