From 26ee35cb7dfb4c48b55c28d79752a31b392bc610 Mon Sep 17 00:00:00 2001 From: Shaikh Naasir <166585409+ShaikhNaasir@users.noreply.github.com> Date: Thu, 13 Nov 2025 19:37:22 +0530 Subject: [PATCH] Fix typo in accessCheckCommand description (#3519) This pull request fixes a minor typo in the WebSocket schema description: Changed 'patameter' to 'parameter'. No functional changes were made. Purely a documentation correction. --- schema/metadata/app/webSocket.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/metadata/app/webSocket.json b/schema/metadata/app/webSocket.json index 17c0204051..d0e1443177 100644 --- a/schema/metadata/app/webSocket.json +++ b/schema/metadata/app/webSocket.json @@ -19,7 +19,7 @@ }, "accessCheckCommand": { "type": "string", - "description": "A console command that will be used to check whether a topic is allowed for a user when they attempting to subscribe. Patameter placeholders starts with the colon :. The userId parameter contains a user ID. If access checking is not needed, omit this parameter." + "description": "A console command that will be used to check whether a topic is allowed for a user when they attempting to subscribe. Parameter placeholders starts with the colon :. The userId parameter contains a user ID. If access checking is not needed, omit this parameter." } } }