File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,20 +20,20 @@ extension JSON {
2020 }
2121}
2222extension 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 {
You can’t perform that action at this time.
0 commit comments