From 0291b645a8a59c4598c5410bfd57b4d594d22a8e Mon Sep 17 00:00:00 2001 From: Hanlu Date: Tue, 17 Sep 2024 01:12:35 +0800 Subject: [PATCH] chore: fix symbol error (#21294) Signed-off-by: liangmulu --- benches/languages.rs | 2 +- lib/vector-tap/src/controller.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benches/languages.rs b/benches/languages.rs index 631e7aa95ae4b..2c386f786fd4f 100644 --- a/benches/languages.rs +++ b/benches/languages.rs @@ -233,7 +233,7 @@ fn benchmark_multifaceted(c: &mut Criterion) { /// /// * `criterion` - Criterion benchmark manager /// * `benchmark_name` - The name of the benchmark -/// * `configs' - Vec of tuples of (config_name, config_snippet) +/// * `configs` - Vec of tuples of (config_name, config_snippet) /// * `input_name` - Name of the input to the first transform /// * `output_name` - Name of the last transform /// * `input` - Line to use as input diff --git a/lib/vector-tap/src/controller.rs b/lib/vector-tap/src/controller.rs index 2b64c3ce53275..33122e124a966 100644 --- a/lib/vector-tap/src/controller.rs +++ b/lib/vector-tap/src/controller.rs @@ -131,7 +131,7 @@ impl TapPayload { ))) } - /// Raise an `invalid_match`event against the provided output pattern. + /// Raise an `invalid_match` event against the provided output pattern. pub fn invalid_output_pattern_match>( pattern: T, invalid_matches: Vec,