aboutsummaryrefslogtreecommitdiff
path: root/http_test.go
diff options
context:
space:
mode:
authorGravatar Oleksandr Redko <Oleksandr_Redko@epam.com> 2023-08-30 14:24:39 +0300
committerGravatar Kirill Danshin <kirill@danshin.pro> 2023-08-30 14:13:13 +0200
commit4ec5c5a7745dfa8c81347eac43411a2dc62ea4f7 (patch)
treea2c4486945550e83818265678902f82178a020ae /http_test.go
parentEnable gocritic linter; fix lint issues (#1612) (diff)
downloadfasthttp-4ec5c5a7745dfa8c81347eac43411a2dc62ea4f7.tar.gz
fasthttp-4ec5c5a7745dfa8c81347eac43411a2dc62ea4f7.tar.bz2
fasthttp-4ec5c5a7745dfa8c81347eac43411a2dc62ea4f7.zip
docs: fix typos in comments and tests
Diffstat (limited to 'http_test.go')
-rw-r--r--http_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/http_test.go b/http_test.go
index 37b8ce1..0091566 100644
--- a/http_test.go
+++ b/http_test.go
@@ -1556,7 +1556,7 @@ func TestRequestMultipartForm(t *testing.T) {
formData = testRequestMultipartForm(t, boundary, formData, 10)
}
- // verify request unmarshalling / marshalling
+ // verify request unmarshaling / marshaling
s := "POST / HTTP/1.1\r\nHost: aaa\r\nContent-Type: multipart/form-data; boundary=foobar\r\nContent-Length: 213\r\n\r\n--foobar\r\nContent-Disposition: form-data; name=\"key_0\"\r\n\r\nvalue_0\r\n--foobar\r\nContent-Disposition: form-data; name=\"key_1\"\r\n\r\nvalue_1\r\n--foobar\r\nContent-Disposition: form-data; name=\"key_2\"\r\n\r\nvalue_2\r\n--foobar--\r\n"
var req Request