mirror of https://github.com/minio/minio.git
Add typos check to Makefile (#20051)
This commit is contained in:
parent
cf371da346
commit
b433bf14ba
1
Makefile
1
Makefile
|
@ -41,6 +41,7 @@ check-gen: ## check for updated autogenerated files
|
|||
lint: getdeps ## runs golangci-lint suite of linters
|
||||
@echo "Running $@ check"
|
||||
@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
|
||||
@command typos && typos ./ || echo "typos binary is not found.. skipping.."
|
||||
|
||||
lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
|
||||
@echo "Running $@ check"
|
||||
|
|
|
@ -199,7 +199,7 @@ func fwdStatusToAPIError(resp *http.Response) *APIError {
|
|||
return nil
|
||||
}
|
||||
|
||||
// GetObjectLamdbaHandler - GET Object with transformed data via lambda functions
|
||||
// GetObjectLambdaHandler - GET Object with transformed data via lambda functions
|
||||
// ----------
|
||||
// This implementation of the GET operation applies lambda functions and returns the
|
||||
// response generated via the lambda functions. To use this API, you must have READ access
|
||||
|
|
|
@ -138,7 +138,7 @@ func (target *WebhookTarget) isActive() (bool, error) {
|
|||
return true, nil
|
||||
}
|
||||
|
||||
// Stat - returns lamdba webhook target statistics such as
|
||||
// Stat - returns lambda webhook target statistics such as
|
||||
// current calls in progress, successfully completed functions
|
||||
// failed functions.
|
||||
func (target *WebhookTarget) Stat() event.TargetStat {
|
||||
|
|
Loading…
Reference in New Issue