Skip to content

Commit

Permalink
export LazyString documentation in the manual (#44988)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk authored Apr 18, 2022
1 parent ce7c858 commit 1600cb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions base/regex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -552,9 +552,7 @@ s"Hello \\g<name>, it's \\1"
julia> typeof(subst)
SubstitutionString{String}
```
"""
struct SubstitutionString{T<:AbstractString} <: AbstractString
string::T
Expand Down
2 changes: 1 addition & 1 deletion base/strings/lazy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ julia> n = 5; str = LazyString("n is ", n)
"n is 5"
```
See also [`lazy"str"`](@ref).
See also [`@lazy_str`](@ref).
!!! compat "Julia 1.8"
`LazyString` requires Julia 1.8 or later.
Expand Down
2 changes: 2 additions & 0 deletions doc/src/base/strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Base.repeat(::AbstractChar, ::Integer)
Base.repr(::Any)
Core.String(::AbstractString)
Base.SubString
Base.LazyString
Base.@lazy_str
Base.transcode
Base.unsafe_string
Base.ncodeunits(::AbstractString)
Expand Down

2 comments on commit 1600cb9

@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(ALL, 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 - no new issues were detected. A full report can be found here.

Please sign in to comment.