diff --git a/docs/docs/features/request-resolvers.md b/docs/docs/features/request-resolvers.md index d516764b..c6269c1b 100644 --- a/docs/docs/features/request-resolvers.md +++ b/docs/docs/features/request-resolvers.md @@ -47,7 +47,7 @@ For deeply nested structs within the request body, you may not know the current func (m *MyInput) Resolve(ctx huma.Context, prefix *huma.PathBuffer) []error { return []error{&huma.ErrorDetail{ Message: "Foo has a bad value", - Location: prefix.With("foo") + Location: prefix.With("foo"), Value: m.Foo, }} }