Skip to content

Commit

Permalink
fix aligment => alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kukkok3 committed Aug 29, 2023
1 parent cb2839a commit e92b9c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub fn store_score_into_proposal(
let values = files_url_object.as_object_mut().ok_or_else(|| {
Error::InvalidProposalData("data inside \"files_url\" not json encoded".to_string())
})?;
values.insert("alignment_score".to_string(), alignment_score.0.into());
values.insert("aligment_score".to_string(), alignment_score.0.into());
values.insert("feasibility_score".to_string(), feasibility_score.0.into());
values.insert(
"auditability_score".to_string(),
Expand Down

0 comments on commit e92b9c6

Please sign in to comment.