Skip to content

Commit

Permalink
add string literal continuation syntax to docs for " (#47690)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored Nov 25, 2022
1 parent 9d25932 commit 04214ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion base/docs/basedocs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3020,7 +3020,7 @@ QuoteNode

"""
"
`"` Is used to delimit string literals.
`"` Is used to delimit string literals. A trailing `\\` can be used to continue a string literal on the next line.
# Examples
Expand All @@ -3030,6 +3030,10 @@ julia> "Hello World!"
julia> "Hello World!\\n"
"Hello World!\\n"
julia> "Hello \\
World"
"Hello World"
```
See also [`\"""`](@ref \"\"\").
Expand Down

3 comments on commit 04214ec

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(isdaily = true)

@maleadt
Copy link
Member

Choose a reason for hiding this comment

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

Restarted with some PkgEval improvements:

@nanosoldier runtests(isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.