From 5d4b2a3b6022b5f466c55cfdabdbb742c1ebf6f8 Mon Sep 17 00:00:00 2001 From: pubkey <8926560+pubkey@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:18:06 +0200 Subject: [PATCH] FIX typo --- docs-src/docs/rx-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/docs/rx-server.md b/docs-src/docs/rx-server.md index 2c172cf6b47..405822fc279 100644 --- a/docs-src/docs/rx-server.md +++ b/docs-src/docs/rx-server.md @@ -149,7 +149,7 @@ There is also the `client-rest` plugin that provides typesave interactions with ```ts // using the client (optional) import { createRestClient } from 'rxdb-server/plugins/client-rest'; -const client = createRestClient('http://localhost:80/' + endpoint.urlPath, {/* headers */}); +const client = createRestClient('http://localhost:80/' + endpoint.urlPath, {/* headers */}); const response = await client.query({ selector: {} }); ```