Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix symbol error #21294

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benches/languages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-tap/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<T: Into<String>>(
pattern: T,
invalid_matches: Vec<String>,
Expand Down
Loading