From c013c83136197b8a42a981228cb52fd46742c7a6 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Tue, 17 Nov 2020 07:35:14 -0500 Subject: [PATCH] Fix comment from review. --- synapse/handlers/sso.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/handlers/sso.py b/synapse/handlers/sso.py index ece704bbc2..c19be04f5b 100644 --- a/synapse/handlers/sso.py +++ b/synapse/handlers/sso.py @@ -37,10 +37,10 @@ class SsoHandler(BaseHandler): def render_error( self, request, error: str, error_description: Optional[str] = None ) -> None: - """Renders the error template and respond with it. + """Renders the error template and responds with it. This is used to show errors to the user. The template of this page can - be found under ``synapse/res/templates/sso_error.html``. + be found under `synapse/res/templates/sso_error.html`. Args: request: The incoming request from the browser.