From 2770cc442e103d149150e177495293d99f89af98 Mon Sep 17 00:00:00 2001 From: Sambhav Gupta <81870866+sambhavgupta0705@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:44:43 +0530 Subject: [PATCH] fix: fixing rendering errors of glee docs (#839) --- docs/pages/bearerToken.md | 2 +- docs/pages/installation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/bearerToken.md b/docs/pages/bearerToken.md index 902c5a7fb..9bc60e394 100644 --- a/docs/pages/bearerToken.md +++ b/docs/pages/bearerToken.md @@ -81,7 +81,7 @@ export async function clientAuth({ parsedAsyncAPI, serverName }) { } ``` -Glee will utilize the `token` for server authentication, employing it in the header with the format: `Authorization: Bearer {token}`. +Glee will utilize the `token` for server authentication, employing it in the header with the format: `Authorization: Bearer \{token\}`. ### Server Side diff --git a/docs/pages/installation.md b/docs/pages/installation.md index d424da085..a4cfc62ad 100644 --- a/docs/pages/installation.md +++ b/docs/pages/installation.md @@ -100,7 +100,7 @@ These scripts serve different development stages: #### Setting up `asyncapi.yaml` and Required Directories -Craft an `asyncapi.yaml` file capable of receiving a "hello {name}" message via WebSocket (`ws`) protocol on the `hello` channel. Define the operation ID as `onHello`, indicating the function to be called, and set the payload type to string for publishing on that channel. +Craft an `asyncapi.yaml` file capable of receiving a "hello \{name\}" message via WebSocket (`ws`) protocol on the `hello` channel. Define the operation ID as `onHello`, indicating the function to be called, and set the payload type to string for publishing on that channel. ```yaml # AsyncAPI Specification for Hello, Glee!