diff --git a/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx b/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx index c8e0cf8095..dd4af5f3a8 100644 --- a/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx +++ b/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx @@ -183,7 +183,7 @@ The example above will create a `.zip` archive that contains the myFunction fold . ├── go.mod ├── go.sum - └── handler.go → package handler with func Handle() + └── handler.go → package handler with func Handle(w http.ResponseWriter, r *http.Request) ```