Skip to content

Commit 546a8f5

Browse files
authored
Fix markdown syntax for Gradle dependency example
1 parent e25749e commit 546a8f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The easiest way to add `githubAppUpdate` to your project is via Gradle. Just add
7878

7979
```groovy
8080
dependencies {
81-
implementation 'com.github.hannesa2:githubAppUpdate:$latestVersion'
81+
implementation "com.github.hannesa2:githubAppUpdate:$latestVersion"
8282
}
8383
```
8484

@@ -88,7 +88,7 @@ To tell Gradle where to find the library, make sure `build.gradle` also contains
8888
allprojects {
8989
repositories {
9090
...
91-
maven { url 'https://jitpack.io' }
91+
maven { url "https://jitpack.io" }
9292
}
9393
}
9494
```

0 commit comments

Comments
 (0)