Hi!
This happens when R detects that the command is incomplete. Note that, + starts to appear after this command:
help("pch)
Here, you haven’t completed the quotes, and hence it's happening. The correct command should be:
help("pch")
You can press Esc to get back > prompt.
Hope this helps.