Skip to content

Commit b8deca7

Browse files
authored
Merge pull request #29 from tayloraswift/readable-symbol-links
readable symbol links
2 parents 964097e + 8465a2c commit b8deca7

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

Sources/JPEG/jpeg.swift

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,10 +1142,12 @@ extension JPEG.Layout
11421142
/// Creates an image layout given image parameters and a scan decomposition.
11431143
///
11441144
/// If the image coding process is a sequential process, the given scan headers
1145-
/// should be constructed using the ``JPEG.Header.Scan/sequential(_:) [8EG0R]``
1145+
/// should be constructed using the
1146+
/// ``JPEG.Header.Scan/sequential(_:) ((JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector, JPEG.Table.HuffmanAC.Selector)...)``
11461147
/// constructor. If the coding process is progressive, the scan headers
1147-
/// should be constructed with the ``JPEG.Header.Scan/progressive(_:bits:) [4VRKH]``,
1148-
/// ``JPEG.Header.Scan/progressive(_:bit:) [6Z2C2]``,
1148+
/// should be constructed with the
1149+
/// ``JPEG.Header.Scan/progressive(_:bits:) ((JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector)..., _)``,
1150+
/// ``JPEG.Header.Scan/progressive(_:bit:) (JPEG.Component.Key..., _)``,
11491151
/// ``JPEG.Header.Scan/progressive(_:band:bits:)``, or
11501152
/// ``JPEG.Header.Scan/progressive(_:band:bit:)`` constructors.
11511153
///
@@ -1478,7 +1480,8 @@ extension JPEG.Header.Scan
14781480
}
14791481
/// Creates a sequential scan descriptor.
14801482
///
1481-
/// This function is variadic sugar for ``Scan/sequential(_:) [4K2XD]``.
1483+
/// This function is variadic sugar for
1484+
/// ``Scan/sequential(_:) ([(JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector, JPEG.Table.HuffmanAC.Selector)])``.
14821485
public static
14831486
func sequential(_ components:
14841487
(
@@ -1523,7 +1526,8 @@ extension JPEG.Header.Scan
15231526
}
15241527
/// Creates a progressive initial DC scan descriptor.
15251528
///
1526-
/// This function is variadic sugar for ``Scan/progressive(_:bits:) [4NV9J]``.
1529+
/// This function is variadic sugar for
1530+
/// ``Scan/progressive(_:bits:) ([(JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector)], _)``.
15271531
public static
15281532
func progressive(_
15291533
components:(ci:JPEG.Component.Key, dc:JPEG.Table.HuffmanDC.Selector)...,
@@ -1563,7 +1567,8 @@ extension JPEG.Header.Scan
15631567
}
15641568
/// Creates a progressive refining DC scan descriptor.
15651569
///
1566-
/// This function is variadic sugar for ``Scan/progressive(_:bit:) [404AZ]``.
1570+
/// This function is variadic sugar for
1571+
/// ``Scan/progressive(_:bit:) ([JPEG.Component.Key], _)``.
15671572
public static
15681573
func progressive(_
15691574
components:JPEG.Component.Key...,

0 commit comments

Comments
 (0)