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 committed Aug 7, 2018
1 parent 090f9c2 commit f33fc6c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions notebook/notebookapp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# coding: utf-8
coding: utf-8
"""A tornado based Jupyter notebook server."""

# Copyright (c) Jupyter Development Team.
Expand Down Expand Up @@ -778,9 +778,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 @@ -789,7 +789,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 f33fc6c

Please sign in to comment.