Skip to content

Commit

Permalink
docs: fix link in AbstractString docstring (#50436)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored Jul 6, 2023
1 parent 2a406b2 commit d9ad6d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions base/strings/basic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ about strings:
* Each `AbstractChar` in a string is encoded by one or more code units
* Only the index of the first code unit of an `AbstractChar` is a valid index
* The encoding of an `AbstractChar` is independent of what precedes or follows it
* String encodings are [self-synchronizing] – i.e. `isvalid(s, i)` is O(1)
[self-synchronizing]: https://en.wikipedia.org/wiki/Self-synchronizing_code
* String encodings are [self-synchronizing](https://en.wikipedia.org/wiki/Self-synchronizing_code) – i.e. `isvalid(s, i)` is O(1)
Some string functions that extract code units, characters or substrings from
strings error if you pass them out-of-bounds or invalid string indices. This
Expand Down

2 comments on commit d9ad6d2

@maleadt
Copy link
Member

@maleadt maleadt commented on d9ad6d2 Jul 7, 2023

Choose a reason for hiding this comment

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

@nanosoldier runtests(["Documenter"])

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

Please sign in to comment.