Skip to content

Commit 9c16ded

Browse files
authored
Update README.md
1 parent d2bb930 commit 9c16ded

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Install the Kotlin client by adding the following dependency to your `gradle.bui
5353

5454
For full documentation, visit the **[Algolia {PROJECT} API Client](https://www.algolia.com/doc/api-client/getting-started/install/kotlin/)**.
5555

56-
## Coroutines
56+
### Coroutines
5757

5858
All methods performing HTTP calls in the Kotlin client are [suspending functions](https://kotlinlang.org/docs/reference/coroutines/composing-suspending-functions.html#composing-suspending-functions).
5959
This means these functions can only be called from a coroutine.
@@ -80,7 +80,7 @@ The Kotlin client doesn't execute HTTP calls on any particular thread, it is up
8080
Learn more about [coroutines](https://kotlinlang.org/docs/reference/coroutines/coroutines-guide.html).
8181

8282

83-
## Waiting for operations
83+
### Waiting for operations
8484

8585
Waiting for an asynchronous server task is made available via a [function literal with receiver](https://kotlinlang.org/docs/reference/lambdas.html#function-literals-with-receiver).
8686

@@ -97,7 +97,7 @@ client.run {
9797

9898
The `wait` functions are suspending, and should only be called from a coroutine.
9999

100-
## Type safety
100+
### Type safety
101101

102102
Response and parameters objects are typed to provide extensive compile time safety coverage.
103103

@@ -132,7 +132,7 @@ query.sortFacetsBy = SortFacetsBy.Count
132132
// query.sortFacetsBy = SortFacetsBy.Other("unforeseen value")
133133
```
134134

135-
## Guides
135+
### Guides
136136

137137
- [Getting started](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/GettingStarted.md)
138138
- [DSL](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/DSL.md)

0 commit comments

Comments
 (0)