From 4fe4be543a63183900bf9b59d9c6bf26b24f5c2d Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Mon, 28 Oct 2024 19:03:26 +0000 Subject: [PATCH] chore: fix typo in docstring --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 2146b7a..6b675f3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -175,8 +175,8 @@ export class Tado { /** * Makes an API call to the provided URL with the specified method and data. * - * @typeparam R - The type of the response - * @typeparam T - The type of the request body + * @typeParam R - The type of the response + * @typeParam T - The type of the request body * @param url - The endpoint to which the request is sent. If the URL contains "https", it will be used as is. * @param method - The HTTP method to use for the request (e.g., "get", "post"). * @param data - The payload to send with the request, if applicable.