-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move docstrings to Unicode stdlib module #25902
Conversation
@@ -107,7 +107,7 @@ pointer(x::SubString{String}, i::Integer) = pointer(x.string) + x.offset + (i-1) | |||
Reverses a string. Technically, this function reverses the codepoints in a string and its | |||
main utility is for reversed-order string processing, especially for reversed | |||
regular-expression searches. See also [`reverseind`](@ref) to convert indices in `s` to | |||
indices in `reverse(s)` and vice-versa, and [`Unicode.graphemes`](@ref Base.Unicode.graphemes) to | |||
indices in `reverse(s)` and vice-versa, and `graphemes` from module `Unicode` to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't get the link to work, suggestions welcome.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did [`Unicode.graphemes`](@ref)
not work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is fine to leave it like this then until we figure it out,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, anyway I don't have any solution to suggest. Merge then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, perhaps run docs locally and see if it looks OK? Otherwise, looks good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They look OK, just the link isn't there (obviously :-).
Functions need to be defined in Unicode module, as reexporting Base.Unicode functions makes them appear with the latter prefix in the manual. Also fix examples by fully qualifying Unicode.normalize().
d62b2e7
to
958db25
Compare
Bump. |
Functions need to be defined in Unicode module, as reexporting Base.Unicode
functions makes them appear with the latter prefix in the manual.