Skip to content

Conversation

@krishzzi
Copy link

🐞 Fix Typo in Installation Instructions

Description:
Fixed a typo in the Gradle configuration example in docs/install.md.
The word epositories was missing the initial r, which would cause build errors when copying the snippet.

Before:

allprojects {
    epositories {
        maven { url 'https://jitpack.io' }
    }
}
After:

gradle
Copy code
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
Why this change:
Corrects a documentation typo to ensure users can copy-paste the code without encountering Gradle syntax errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant