Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/tutorial/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ an odd number of ``\`` characters; see
and workarounds.

String literals can span multiple lines. One way is using triple-quotes:
``"""..."""`` or ``'''...'''``. End of lines are automatically
``"""..."""`` or ``'''...'''``. Ends of lines are automatically
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm, Why do I feel lowercase is more beautiful.

String literals can span multiple lines.  One way is using triple-quotes:
``"""..."""`` or ``'''...'''``.  ends of lines are automatically included in the string,
but it's possible to prevent this by adding a ``\`` at the end of the line. 

included in the string, but it's possible to prevent this by adding a ``\`` at
the end of the line. In the following example, the initial newline is not
included::
Expand Down