From ecd85e195ea28a6f3c16be8dc4f8944a85a9a52f Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 25 Sep 2023 14:48:48 +0200 Subject: [PATCH] CoapRequestFuture - Fixed documentation --- source/doap/client/request.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/doap/client/request.d b/source/doap/client/request.d index c775ef6..c303224 100644 --- a/source/doap/client/request.d +++ b/source/doap/client/request.d @@ -379,7 +379,7 @@ public class CoapRequestFuture * * Returns: the response as a `CoapPacket` * Throws: - * CoapException on cancelled request + * CoapClientException on cancelled request */ public CoapPacket get() { @@ -412,9 +412,9 @@ public class CoapRequestFuture * * Returns: the response as a `CoapPacket` * Throws: - * RequestTimeoutException = on the + * RequestTimeoutException on the * future request timing out - * CoapClientException = on cancellation + * CoapClientException on cancellation * of the request */ public CoapPacket get(Duration timeout)