-
Notifications
You must be signed in to change notification settings - Fork 112
Fix: Correct image path typo in Payment Request Formats guide #1177
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: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for bitcoin-design-site ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Hi, thanks for making this fix. Are you using a bot/AI for this? We're seeing a pattern here of new contributors posting minor typo fixes, from private accounts and hundreds of repositories - like yours. Certainly looks like automation. Can you share some background on your contribution, please? |
Hi! Yes, I am using AI tools to help identify and fix minor issues like typos across open source repositories. My goal is to contribute to the overall quality and readability of the documentation and code. |
@kilavvy cool. Which ones do you use? Maybe we should adopt this in our process. |
Haha, I wish there was some secret benefit for me! 😄 |
The benefit of not having to spend time on typos but work on cooler things? 😄 |
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.
So this PR actually breaks an image path, instead of fixing it. Problem is that both the path and the image file name have the typo. So in order for this PR to work, the file name would also have to be fixed.
@kilavvy mentioned they use misspell to automatically identify typos. That library probably just looks at the markdown file and does not double-check against the file names.
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.
Description
This PR fixes a typo in the image paths on the
Payment Request Formats
page. The paths were pointing to misspelled filenames (adresses
instead ofaddresses
), causing the images to not display correctly.Changes:
guide/how-it-works/payment-request-formats.md
to use the correct spelling "addresses".