From e2554d616f52a03bbb5b68ee533f9968045a2aa9 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 31 Jan 2025 17:12:51 +0100 Subject: [PATCH 1/3] Update upgrade-github-actions.sh --- scripts/upgrade-github-actions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/upgrade-github-actions.sh b/scripts/upgrade-github-actions.sh index 79d0172998..0982e8b08f 100644 --- a/scripts/upgrade-github-actions.sh +++ b/scripts/upgrade-github-actions.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This script will use the open dependabot PRs to peform an upgrade of all GH actions +# This script will use the open dependabot PRs to perform an upgrade of all GH actions # The target branch to merge all Dependabot PRs into TARGET_BRANCH="upgrade-gh-actions" @@ -15,4 +15,4 @@ gh pr list --search "author:app/dependabot" --state open --json headRefName --jq done # After merging, you might want to push the changes -# git push origin $TARGET_BRANCH \ No newline at end of file +# git push origin $TARGET_BRANCH From f4e2e1c75097fc01e85d6d0ff83a994e18d6c1ba Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 31 Jan 2025 17:13:16 +0100 Subject: [PATCH 2/3] Update policy.rs --- pallets/loans/src/types/policy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/loans/src/types/policy.rs b/pallets/loans/src/types/policy.rs index 3cd5501b84..f4b6e8acee 100644 --- a/pallets/loans/src/types/policy.rs +++ b/pallets/loans/src/types/policy.rs @@ -115,7 +115,7 @@ impl WriteOffRule { } } -/// The status of the writen off +/// The status of the written off #[derive( Encode, Decode, From 68a960dd55ca922917c044aeb2c7fd499b5c9335 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 31 Jan 2025 17:13:54 +0100 Subject: [PATCH 3/3] Update policy.rs --- pallets/loans/src/types/policy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/loans/src/types/policy.rs b/pallets/loans/src/types/policy.rs index f4b6e8acee..a5fabda8b2 100644 --- a/pallets/loans/src/types/policy.rs +++ b/pallets/loans/src/types/policy.rs @@ -44,7 +44,7 @@ pub enum WriteOffTrigger { PriceOutdated(Seconds), } -/// Wrapper type to identify equality berween kinds of triggers, +/// Wrapper type to identify equality between kinds of triggers, /// without taking into account their inner values #[derive(Encode, Decode, Clone, Eq, PartialOrd, Ord, TypeInfo, RuntimeDebug, MaxEncodedLen)] pub struct UniqueWriteOffTrigger(pub WriteOffTrigger);