Skip to content

Commit 50f0b97

Browse files
fix: typos (#8918)
Co-authored-by: chikke srujan <[email protected]>
1 parent a132cb5 commit 50f0b97

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/api_models/src/admin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3002,7 +3002,7 @@ pub struct ProfileUpdate {
30023002
#[schema(value_type = Option<MerchantCountryCode>, example = "840")]
30033003
pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>,
30043004

3005-
/// Inidcates the state of revenue recovery algorithm type
3005+
/// Indicates the state of revenue recovery algorithm type
30063006
#[schema(value_type = Option<RevenueRecoveryAlgorithmType>, example = "cascading")]
30073007
pub revenue_recovery_retry_algorithm_type:
30083008
Option<common_enums::enums::RevenueRecoveryAlgorithmType>,

crates/hyperswitch_connectors/src/connectors/netcetera/transformers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ impl
188188
ds_trans_id: response.authentication_response.ds_trans_id,
189189
eci: response.eci,
190190
challenge_code,
191-
challenge_cancel: None, // Note - challenge_cancel field is recieved in the RReq and updated in DB during external_authentication_incoming_webhook_flow
191+
challenge_cancel: None, // Note - challenge_cancel field is received in the RReq and updated in DB during external_authentication_incoming_webhook_flow
192192
challenge_code_reason: response.authentication_response.trans_status_reason,
193193
message_extension,
194194
})

crates/router/src/core/payments/routing/utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,14 +420,14 @@ pub async fn decision_engine_routing(
420420
return Ok(Vec::default());
421421
};
422422

423-
let de_output_conenctor = extract_de_output_connectors(de_euclid_response.output)
423+
let de_output_connector = extract_de_output_connectors(de_euclid_response.output)
424424
.map_err(|e| {
425425
logger::error!(error=?e, "decision_engine_euclid_evaluation_error: Failed to extract connector from Output");
426426
e
427427
})?;
428428

429429
transform_de_output_for_router(
430-
de_output_conenctor.clone(),
430+
de_output_connector.clone(),
431431
de_euclid_response.evaluated_output.clone(),
432432
)
433433
.map_err(|e| {

0 commit comments

Comments
 (0)