From: Peter Lohse <hanashi@hanashi.eu>
Date: Sun, 18 Aug 2024 10:00:15 +0000 (+0200)
Subject: Fix path to `WoltLabSuite/Core/Api/Result` in RPC API doc
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d4dbf97cce66b87556600069ec2d10496dd76868;p=GitHub%2FWoltLab%2Fwoltlab.github.io.git

Fix path to `WoltLabSuite/Core/Api/Result` in RPC API doc
---

diff --git a/docs/javascript/components_rpc_api.md b/docs/javascript/components_rpc_api.md
index be18b971..d9cfaaf3 100644
--- a/docs/javascript/components_rpc_api.md
+++ b/docs/javascript/components_rpc_api.md
@@ -15,7 +15,7 @@ A comprehensive implementation can be found in `WoltLabSuite/Core/Api/Comments/R
 
 ```ts
 import { prepareRequest } from "WoltLabSuite/Core/Ajax/Backend";
-import { ApiResult, apiResultFromError, apiResultFromValue } from "../Result";
+import { ApiResult, apiResultFromError, apiResultFromValue } from "WoltLabSuite/Core/Api/Result";
 
 type Response = {
   template: string;