Skip to content
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

Correct typos and remove trailing spaces from README.md #246

Merged
merged 2 commits into from
Oct 3, 2024

Commits on Oct 2, 2024

  1. Correct typos in README.md

    Verified exhaustiveness thanks to:
    
    ```bash
    grep -r ' )'
    grep -r ' \.' --include=*.md
    ```
    Benjamin-Loison committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    65a9d4e View commit details
    Browse the repository at this point in the history
  2. Remove README.md trailing spaces

    ```bash
    sed -i 's/[ \t]*$//' README.md
    ```
    
    Source: [the Stack Overflow answer 4438318](https://stackoverflow.com/a/4438318)
    Benjamin-Loison committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    d51c881 View commit details
    Browse the repository at this point in the history