From ca13a7c2bfdf841fd8e202c66a4fd11df18638ed Mon Sep 17 00:00:00 2001 From: Markus Malkusch Date: Mon, 6 Nov 2023 16:43:30 +0100 Subject: [PATCH] Update documentation --- README.md | 4 ++-- src/main/java/de/malkusch/km200/KM200.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 76a43ae..9b16772 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This package is available in Maven central: de.malkusch.km200 km200 - 2.1.0 + 2.1.1 ``` @@ -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 diff --git a/src/main/java/de/malkusch/km200/KM200.java b/src/main/java/de/malkusch/km200/KM200.java index 8f53c84..5bdbc5f 100644 --- a/src/main/java/de/malkusch/km200/KM200.java +++ b/src/main/java/de/malkusch/km200/KM200.java @@ -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 {