From 9b523a18f73d9d8b38fa25c84a497e3ca129d829 Mon Sep 17 00:00:00 2001 From: GTB3NW Date: Mon, 13 Jun 2022 20:00:04 +0100 Subject: [PATCH] Update baseURL in example The base url is incorrect in the example, it requires a prefix --- MANUAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANUAL.md b/MANUAL.md index 669e264f..ea9d91fb 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -1808,7 +1808,7 @@ Example usage: ```typescript let transport = new GrpcWebFetchTransport({ - baseUrl: "localhost:3000" + baseUrl: "http://localhost:3000" }); let client = new HaberdasheryClient(transport);