From 4b8dec8901bfe969b46d6eedf09e18a5a2937bcb Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Thu, 20 Nov 2025 11:07:19 +0500 Subject: [PATCH] docs: clarify postgrest reserved characters in url grammar Fixes a typo in the documentation where it said that `()` is a reserved character, when we actually meant to say that `(` and `)` are reserved characters. Related discussion in #4254. Signed-off-by: Taimoor Zaeem --- docs/references/api/url_grammar.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/api/url_grammar.rst b/docs/references/api/url_grammar.rst index 36731f7d4..850468bdb 100644 --- a/docs/references/api/url_grammar.rst +++ b/docs/references/api/url_grammar.rst @@ -51,7 +51,7 @@ You can request table/columns with spaces in them by percent encoding the spaces Reserved characters ~~~~~~~~~~~~~~~~~~~ -If filters include PostgREST reserved characters(``,``, ``.``, ``:``, ``()``) you'll have to surround them in percent encoded double quotes ``%22`` for correct processing. +If filters include PostgREST reserved characters(``,``, ``.``, ``:``, ``(``, ``)``) you'll have to surround them in percent encoded double quotes ``%22`` for correct processing. Here ``Hebdon,John`` and ``Williams,Mary`` are values.