From 976ef321c78feae7b5ef4a575c472a548bf900b2 Mon Sep 17 00:00:00 2001 From: Chris Roche Date: Tue, 26 Nov 2024 09:27:15 -0800 Subject: [PATCH] Clarify "custom validation functions" (#279) Fixes #277 --------- Co-authored-by: jchadwick-buf <116005195+jchadwick-buf@users.noreply.github.com> --- docs/custom-constraints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/custom-constraints.md b/docs/custom-constraints.md index 5c2dbc9b..10ec9ed6 100644 --- a/docs/custom-constraints.md +++ b/docs/custom-constraints.md @@ -8,7 +8,7 @@ requirements specific to your application. Field-level constraints apply to specific data types within a message and can include requirements such as minimum and maximum values, regular expressions, -and custom validation functions. Message-level constraints, on the other hand, +and [custom validation functions](cel.md#custom-variables-functions-and-overloads). Message-level constraints, on the other hand, apply to the entire message, allowing for more complex validation scenarios that depend on the relationships between fields or specific combinations of field values.