Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Reviewed By: samkevich

Differential Revision: D64824941

fbshipit-source-id: 4fe424b4fc7e6abeb7555893a480fc88823c62ca
  • Loading branch information
Ian Childs authored and facebook-github-bot committed Oct 23, 2024
1 parent b1f0dfd commit 8db105e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/buck2_action_impl/src/actions/impls/run/dep_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ impl CommonDigests {
}

/// Take a list of declared dep files (label, artifact) and filtered inputs (StoredFingerprints)
/// and create a list of dep file path and filterd inputs for that input
/// and create a list of dep file path and filtered inputs for that input
fn get_dep_file_inputs(
&self,
declared_dep_files: &DeclaredDepFiles,
Expand Down Expand Up @@ -453,7 +453,7 @@ impl DepFileBundle {
declared_outputs: &[BuildArtifact],
) -> anyhow::Result<(Option<(ActionOutputs, ActionExecutionMetadata)>, bool)> {
// Get the action outputs (if cache hit) and an indicator on whether a full lookup operation should be performed
let (outputs, check_filterd_inputs) = span_async_simple(
let (outputs, check_filtered_inputs) = span_async_simple(
buck2_data::MatchDepFilesStart {
checking_filtered_inputs: false,
remote_cache: false,
Expand All @@ -479,7 +479,7 @@ impl DepFileBundle {
},
)
});
Ok((outputs, check_filterd_inputs))
Ok((outputs, check_filtered_inputs))
}

pub(crate) async fn check_local_dep_file_cache(
Expand Down

0 comments on commit 8db105e

Please sign in to comment.