diff --git a/doc/FILE_VALIDATION.md b/doc/FILE_VALIDATION.md index 55e68d1..2bbc1f5 100644 --- a/doc/FILE_VALIDATION.md +++ b/doc/FILE_VALIDATION.md @@ -31,7 +31,7 @@ func handler(w http.ResponseWriter, r *http.Request) { v := govalidator.New(opts) e := v.Validate() err := map[string]interface{}{"validationError": e} - w.Header().Set("Content-type", "applciation/json") + w.Header().Set("Content-type", "application/json") json.NewEncoder(w).Encode(err) }