Skip to content

Commit

Permalink
Add full stops to doc strings for int128/uint128_str macros (JuliaLan…
Browse files Browse the repository at this point in the history
  • Loading branch information
numbermaniac authored and LilithHafner committed Mar 8, 2022
1 parent 1f2f2ce commit 28bf4ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/int.jl
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@ floor(::Type{T}, x::Integer) where {T<:Integer} = convert(T, x)
@int128_str str
@int128_str(str)
`@int128_str` parses a string into a Int128
Throws an `ArgumentError` if the string is not a valid integer
`@int128_str` parses a string into a Int128.
Throws an `ArgumentError` if the string is not a valid integer.
"""
macro int128_str(s)
return parse(Int128, s)
Expand All @@ -658,8 +658,8 @@ end
@uint128_str str
@uint128_str(str)
`@uint128_str` parses a string into a UInt128
Throws an `ArgumentError` if the string is not a valid integer
`@uint128_str` parses a string into a UInt128.
Throws an `ArgumentError` if the string is not a valid integer.
"""
macro uint128_str(s)
return parse(UInt128, s)
Expand Down

0 comments on commit 28bf4ff

Please sign in to comment.