@@ -18,7 +18,7 @@ import Base: UUID
1818 uuid_version(u::UUID) -> Int
1919
2020Inspects the given UUID and returns its version
21- (see [RFC 4122](https://www .ietf.org/rfc /rfc4122)).
21+ (see [RFC 4122](https://tools .ietf.org/html /rfc4122)).
2222
2323# Examples
2424```jldoctest
@@ -39,7 +39,7 @@ const namespace_x500 = UUID(0x6ba7b8149dad11d180b400c04fd430c8) # 6ba7b814-9dad-
3939 uuid1([rng::AbstractRNG]) -> UUID
4040
4141Generates a version 1 (time-based) universally unique identifier (UUID), as specified
42- by [RFC 4122](https://www .ietf.org/rfc /rfc4122). Note that the Node ID is randomly generated (does not identify the host)
42+ by [RFC 4122](https://tools .ietf.org/html /rfc4122). Note that the Node ID is randomly generated (does not identify the host)
4343according to section 4.5 of the RFC.
4444
4545The default rng used by `uuid1` is not `Random.default_rng()` and every invocation of `uuid1()` without
9292 uuid4([rng::AbstractRNG]) -> UUID
9393
9494Generates a version 4 (random or pseudo-random) universally unique identifier (UUID),
95- as specified by [RFC 4122](https://www .ietf.org/rfc /rfc4122).
95+ as specified by [RFC 4122](https://tools .ietf.org/html /rfc4122).
9696
9797The default rng used by `uuid4` is not `Random.default_rng()` and every invocation of `uuid4()` without
9898an argument should be expected to return a unique identifier. Importantly, the outputs of
124124 uuid5(ns::UUID, name::String) -> UUID
125125
126126Generates a version 5 (namespace and domain-based) universally unique identifier (UUID),
127- as specified by RFC 4122.
127+ as specified by [ RFC 4122](https://tools.ietf.org/html/rfc4122) .
128128
129129!!! compat "Julia 1.1"
130130 This function requires at least Julia 1.1.
165165 uuid7([rng::AbstractRNG]) -> UUID
166166
167167Generates a version 7 (random or pseudo-random) universally unique identifier (UUID),
168- as specified by [RFC 9652 ](https://www.rfc-editor .org/rfc /rfc9562).
168+ as specified by [RFC 9562 ](https://tools.ietf .org/html /rfc9562).
169169
170170The default rng used by `uuid7` is not `Random.default_rng()` and every invocation of `uuid7()` without
171171an argument should be expected to return a unique identifier. Importantly, the outputs of
0 commit comments