Skip to content

Commit

Permalink
Fix doc comment in internal __convert_digit (#47997)
Browse files Browse the repository at this point in the history
Co-authored-by: Sukera <[email protected]>
  • Loading branch information
Seelengrab and Seelengrab committed Dec 28, 2022
1 parent fc4c666 commit dd8d58e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/parse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ function parseint_preamble(signed::Bool, base::Int, s::AbstractString, startpos:
end

# '0':'9' -> 0:9
# 'A':'Z' -> 10:26
# 'a':'z' -> 10:26 if base <= 36, 36:62 otherwise
# 'A':'Z' -> 10:35
# 'a':'z' -> 10:35 if base <= 36, 36:61 otherwise
# input outside of that is mapped to base
@inline function __convert_digit(_c::UInt32, base::UInt32)
_0 = UInt32('0')
Expand Down

0 comments on commit dd8d58e

Please sign in to comment.