From 611a1d711bc382fb0dafafbdea5a5091383de972 Mon Sep 17 00:00:00 2001 From: Jack Danger Canty Date: Sat, 19 Apr 2014 23:25:48 -0700 Subject: [PATCH] typo fix: 'methid' -> 'method' --- engine/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/http.go b/engine/http.go index c0418bcfb0..7e4dcd7bb4 100644 --- a/engine/http.go +++ b/engine/http.go @@ -9,7 +9,7 @@ import ( // result as an http response. // This method allows an Engine instance to be passed as a standard http.Handler interface. // -// Note that the protocol used in this methid is a convenience wrapper and is not the canonical +// Note that the protocol used in this method is a convenience wrapper and is not the canonical // implementation of remote job execution. This is because HTTP/1 does not handle stream multiplexing, // and so cannot differentiate stdout from stderr. Additionally, headers cannot be added to a response // once data has been written to the body, which makes it inconvenient to return metadata such