Skip to content

Commit c84d55d

Browse files
Apply suggestions from code review
Co-authored-by: blackout <[email protected]>
1 parent b5e0c91 commit c84d55d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

synapse/lib/httpapi.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def check_origin(self, origin):
117117

118118
def sendRestErr(self, code: str, mesg: str, *, status_code: int | None =None) -> None:
119119
'''
120-
Sent a JSON REST error message with a code and message.
120+
Send a JSON REST error message with a code and message.
121121
122122
Args:
123123
code: The error code.
@@ -138,7 +138,7 @@ def sendRestErr(self, code: str, mesg: str, *, status_code: int | None =None) ->
138138

139139
def sendRestExc(self, e: Exception, *, status_code: int | None = None) -> None:
140140
'''
141-
Sent a JSON REST error message based on the exception.
141+
Send a JSON REST error message based on the exception.
142142
143143
Args:
144144
e: The exception to send. The exception class name will be used as the error code.
@@ -159,7 +159,7 @@ def sendRestExc(self, e: Exception, *, status_code: int | None = None) -> None:
159159

160160
def sendRestRetn(self, valu, *, status_code: int | None = None) -> None:
161161
'''
162-
Sent a successful JSON REST response.
162+
Send a successful JSON REST response.
163163
164164
Args:
165165
valu: The JSON compatible value to send.

0 commit comments

Comments
 (0)