CodeView icon indicating copy to clipboard operation
CodeView copied to clipboard

Fix typo in install.md for repositories section

Open krishzzi opened this issue 2 months ago • 0 comments

🐞 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.

krishzzi avatar Nov 13 '25 04:11 krishzzi