Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
malkusch committed Nov 6, 2023
1 parent 9438baf commit ca13a7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This package is available in Maven central:
<dependency>
<groupId>de.malkusch.km200</groupId>
<artifactId>km200</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</dependency>
```

Expand Down Expand Up @@ -87,7 +87,7 @@ km200.endpoints().forEach(System.out::println);
Code wise this API is thread safe, it is highly recommended to not
use it concurrently. Your KM200 gateway itself is not thread safe. In order
to protect users from wrong usage, this API will serialize all requests, i.e.
concurrent requests will not happen concurrently.
concurrent requests will happen sequentially.

## License

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/malkusch/km200/KM200.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* Code wise this class is thread safe, it is highly recommended to not use it
* concurrently. Your KM200 gateway itself is not thread safe. In order to
* protect users from wrong usage, this API will serialize all requests, i.e.
* concurrent requests will not happen concurrently.
* concurrent requests will happen sequentially.
*/
public final class KM200 {

Expand Down

0 comments on commit ca13a7c

Please sign in to comment.