Skip to content

Commit

Permalink
Fix quotes and tidy up the help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mociarain authored and kevin-bates committed Sep 25, 2019
1 parent 9e04d24 commit a8022ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -762,9 +762,9 @@ def _token_default(self):
max_body_size = Integer(512 * 1024 * 1024, config=True,
help="""
Sets the maximum allowed size of the client request body, specified in
the Content-Length request header field. If the size in a request
exceeds the configured value, returned to the client a
Malformed HTTP message is returned.
the Content-Length request header field. If the size in a request
exceeds the configured value, a malformed HTTP message is returned to
the client.
Note: max_body_size is applied even in streaming mode.
"""
Expand All @@ -773,7 +773,7 @@ def _token_default(self):
max_buffer_size = Integer(512 * 1024 * 1024, config=True,
help="""
Gets or sets the maximum amount of memory, in bytes, that is allocated
for use by the manager of the buffers.
for use by the buffer manager.
"""
)

Expand Down

0 comments on commit a8022ab

Please sign in to comment.