Skip to content

Commit

Permalink
chore: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Jan 29, 2024
1 parent 3e8be42 commit b6b511c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signature_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl TryFrom<&str> for HttpSignatureParams {
.unwrap()
.split(' ')
.filter(|v| !v.is_empty())
.map(|v| HttpMessageComponentId::try_from(v))
.map(HttpMessageComponentId::try_from)
.collect::<Vec<_>>();
anyhow::ensure!(
covered_components.iter().all(|v| v.is_ok()),
Expand Down

0 comments on commit b6b511c

Please sign in to comment.