From 2de55a499a5274dc3dc07a45835f45984af70094 Mon Sep 17 00:00:00 2001 From: Tristan Swadell Date: Tue, 19 Sep 2023 15:38:48 -0700 Subject: [PATCH] Fix deprecaation notice for string format validation (#840) --- cel/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cel/options.go b/cel/options.go index a6bff0dc..74e3b0ba 100644 --- a/cel/options.go +++ b/cel/options.go @@ -448,7 +448,7 @@ const ( // OptCheckStringFormat enables compile-time checking of string.format calls for syntax/cardinality. // - // Deprecated: use ext.ValidateFormatString() as this option is now a no-op. + // Deprecated: use ext.StringsValidateFormatCalls() as this option is now a no-op. OptCheckStringFormat EvalOption = 1 << iota )