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: {} }); ```