Skip to content

Commit 0827dcb

Browse files
committed
Fix quotes and tidy up the help messages
1 parent 090f9c2 commit 0827dcb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

notebook/notebookapp.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -778,9 +778,9 @@ def _token_default(self):
778778
max_body_size = Integer(512 * 1024 * 1024, config=True,
779779
help="""
780780
Sets the maximum allowed size of the client request body, specified in
781-
the Content-Length request header field. If the size in a request
782-
exceeds the configured value, returned to the client a
783-
Malformed HTTP message is returned.
781+
the Content-Length request header field. If the size in a request
782+
exceeds the configured value, a malformed HTTP message is returned to
783+
the client.
784784
785785
Note: max_body_size is applied even in streaming mode.
786786
"""
@@ -789,7 +789,7 @@ def _token_default(self):
789789
max_buffer_size = Integer(512 * 1024 * 1024, config=True,
790790
help="""
791791
Gets or sets the maximum amount of memory, in bytes, that is allocated
792-
for use by the manager of the buffers.
792+
for use by the buffer manager.
793793
"""
794794
)
795795

0 commit comments

Comments
 (0)