Skip to content

Commit b502292

Browse files
committed
disambiguate doclinks
1 parent 53fa3db commit b502292

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/JSONAST/JSON.Node.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ extension JSON {
2020
}
2121
}
2222
extension JSON.Node {
23-
/// A shorthand for constructing the payload of ``string(_:) (Literal<String>)``.
23+
/// A shorthand for constructing the payload of ``string(_:) [case]``.
2424
@inlinable public static func string(_ unescaped: consuming String) -> Self {
2525
.string(JSON.Literal<String>.init(unescaped))
2626
}
2727

28-
/// A shorthand for constructing the payload of ``number(_:) (Number)``.
28+
/// A shorthand for constructing the payload of ``number(_:) [case]``.
2929
@inlinable public static func number<T>(_ value: T) -> Self where T: UnsignedInteger {
3030
.number(JSON.Number.init(value))
3131
}
32-
/// A shorthand for constructing the payload of ``number(_:) (Number)``.
32+
/// A shorthand for constructing the payload of ``number(_:) [case]``.
3333
@inlinable public static func number<T>(_ value: T) -> Self where T: SignedInteger {
3434
.number(JSON.Number.init(value))
3535
}
36-
/// A shorthand for constructing the payload of ``number(_:) (Number)``.
36+
/// A shorthand for constructing the payload of ``number(_:) [case]``.
3737
@inlinable public static func number<T>(
3838
_ value: T
3939
) -> Self where T: BinaryFloatingPoint & LosslessStringConvertible {

0 commit comments

Comments
 (0)