Skip to content

Commit

Permalink
Fix maven coordiantes in extension docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed May 30, 2024
1 parent 498efc3 commit 903b87c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Each set of extensions is published as a separate maven package.

```kotlin
dependencies {
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-colorint:$colormathVersion")
implementation("com.github.ajalt.colormath:colormath-ext-android-colorint:$colormathVersion")
}
```

Expand All @@ -27,7 +27,7 @@ textView.highlightColor = textColor.toColorInt()

```kotlin
dependencies {
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-color:$colormathVersion")
implementation("com.github.ajalt.colormath:colormath-ext-android-color:$colormathVersion")
}
```

Expand All @@ -50,7 +50,7 @@ val lab = AndroidColor.valueOf(0f, 1f, 0f, 1f, ColorSpace.get(ColorSpace.Named.C

```kotlin
dependencies {
implementation("com.github.ajalt.colormath.extensions:colormath-ext-jetpack-compose:$colormathVersion")
implementation("com.github.ajalt.colormath:colormath-ext-jetpack-compose:$colormathVersion")
}
```

Expand Down

0 comments on commit 903b87c

Please sign in to comment.