-
Notifications
You must be signed in to change notification settings - Fork 4.2k
chore: remove trailing space from directory paths in postman and address typos in the repo #9114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…s cloning Fixed invalid path 'postman/collection-dir/.../Scenario10-Create 3DS payment without external 3ds authentication /.meta.json' by removing trailing space from directory name. This resolves the Windows filesystem compatibility issue where trailing spaces in file/folder names are not allowed, causing git clone to fail on Windows. Fixes juspay#9111 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
- Fix 'aqcuired' -> 'acquired' in api_locking.rs - Fix 'addtional' -> 'additional' in payment_methods.rs - Fix 'fo' -> 'for' in nuvei transformers.rs 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
@@ -1404,7 +1404,7 @@ where | |||
card_holder_name: data.card_holder_name, | |||
expiration_month: Some(data.card_exp_month), | |||
expiration_year: Some(data.card_exp_year), | |||
..Default::default() // CVV should be disabled by nuvei fo | |||
..Default::default() // CVV should be disabled by nuvei for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
..Default::default() // CVV should be disabled by nuvei for | |
..Default::default() // CVV should be disabled for nuvei |
correct me if wrong, @Nithin1506200
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, you do not need to merge from main when this branch goes out of date with the base branch (main).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, thanks for the contribution, @shivamgupta88💐!
@shivamgupta88, can you please update the PR description by moving it to the right place? also update the description to include the typos being fixed in the repo. |
c35eeb8
…s cloning
Fixed invalid path 'postman/collection-dir/.../Scenario10-Create 3DS payment without external 3ds authentication /.meta.json' by removing trailing space from directory name. This resolves the Windows filesystem compatibility issue where trailing spaces in file/folder names are not allowed, causing git clone to fail on Windows.
Fixes #9111
Type of Change
Description
Additional Changes
Motivation and Context
How did you test it?
Checklist
cargo +nightly fmt --all
cargo clippy