Skip to content
Merged
Changes from all commits
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/errors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ complaint you get while you are still learning Python::
^^^^^
SyntaxError: invalid syntax

The parser repeats the offending line and displays little 'arrow's pointing
The parser repeats the offending line and displays little arrows pointing
Copy link
Member

Choose a reason for hiding this comment

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

Now I understand your confusion :)

There's some mildly interesting history to this line if you want to go digging. I think we might be due to more significantly rewrite this paragraph, but I agree that just removing the single-quotes is a quick boost to readability here.

at the token in the line where the error was detected. The error may be
caused by the absence of a token *before* the indicated token. In the
example, the error is detected at the function :func:`print`, since a colon
Expand Down
Loading