Skip to content

Commit 1078a5a

Browse files
Cell: remove unneeded newline in the middle of class documentation
The `contents` documentation was split over multiple lines, but an extra newline meant that there was an (indented) line with just the word "and" followed by an unindented line with "further attempts...". Remove that newline to avoid having just a single word in the documentation and to fix the indentation.
1 parent 9398655 commit 1078a5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/cellobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ PyDoc_STRVAR(cell_new_doc,
2929
"\n"
3030
" contents\n"
3131
" the contents of the cell. If not specified, the cell will be empty,\n"
32-
" and \n further attempts to access its cell_contents attribute will\n"
32+
" and further attempts to access its cell_contents attribute will\n"
3333
" raise a ValueError.");
3434

3535

0 commit comments

Comments
 (0)