Skip to content

Commit 50ab3a9

Browse files
authored
Add full stops to doc strings for int128/uint128_str macros (#42196)
1 parent 2f00c5f commit 50ab3a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

base/int.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,8 @@ floor(::Type{T}, x::Integer) where {T<:Integer} = convert(T, x)
647647
@int128_str str
648648
@int128_str(str)
649649
650-
`@int128_str` parses a string into a Int128
651-
Throws an `ArgumentError` if the string is not a valid integer
650+
`@int128_str` parses a string into a Int128.
651+
Throws an `ArgumentError` if the string is not a valid integer.
652652
"""
653653
macro int128_str(s)
654654
return parse(Int128, s)
@@ -658,8 +658,8 @@ end
658658
@uint128_str str
659659
@uint128_str(str)
660660
661-
`@uint128_str` parses a string into a UInt128
662-
Throws an `ArgumentError` if the string is not a valid integer
661+
`@uint128_str` parses a string into a UInt128.
662+
Throws an `ArgumentError` if the string is not a valid integer.
663663
"""
664664
macro uint128_str(s)
665665
return parse(UInt128, s)

0 commit comments

Comments
 (0)