Skip to content

Commit 0e4ab62

Browse files
authored
Fix README example (#82)
1 parent fd5b0e4 commit 0e4ab62

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Kotlin library to access the [Gradle Enterprise API][1], easy to use from Kotl
77
scripts, projects or Jupyter notebooks:
88

99
```kotlin
10-
GradleEnterprise.buildsApi.getBuilds(since = yesterdayMilli).forEach {
10+
GradleEnterpriseApi.buildsApi.getBuilds(since = yesterdayMilli).forEach {
1111
println(it)
1212
}
1313
```
@@ -73,6 +73,7 @@ interface GradleEnterpriseApi {
7373
val buildCacheApi: BuildCacheApi
7474
val metaApi: MetaApi
7575
val testDistributionApi: TestDistributionApi
76+
// ...
7677
}
7778
```
7879

0 commit comments

Comments
 (0)