@@ -31,7 +31,7 @@ The available cases are: `syntax`, `break`, `spaces`, `open`, `close`,
3131` newlines ` , ` comment ` , and ` verbatim ` . The behavior of each of them is
3232described below with pseudocode examples.
3333
34- See: [ ` Token.swift ` ] ( ../Sources/SwiftFormatPrettyPrint /Token.swift )
34+ See: [ ` Token.swift ` ] ( ../Sources/SwiftFormat/PrettyPrint /Token.swift )
3535
3636#### Syntax
3737
@@ -326,7 +326,7 @@ beginning of a source file).
326326When we have visited all nodes in the AST, the array of printing tokens is then
327327passed on to the * scan* phase of the pretty-printer.
328328
329- See: [ ` TokenStreamCreator.swift ` ] ( ../Sources/SwiftFormatPrettyPrint /TokenStreamCreator.swift )
329+ See: [ ` TokenStreamCreator.swift ` ] ( ../Sources/SwiftFormat/PrettyPrint /TokenStreamCreator.swift )
330330
331331## Scan
332332
@@ -346,7 +346,7 @@ After having iterated over the entire list of tokens and calculated their
346346lengths, we then loop over the tokens and call ` print ` for each token with its
347347corresponding length.
348348
349- See: [ ` PrettyPrint.swift:prettyPrint() ` ] ( ../Sources/SwiftFormatPrettyPrint /PrettyPrint.swift )
349+ See: [ ` PrettyPrint.swift:prettyPrint() ` ] ( ../Sources/SwiftFormat/PrettyPrint /PrettyPrint.swift )
350350
351351### Syntax Tokens
352352
@@ -421,7 +421,7 @@ The logic for the `print` function is fairly complex and varies depending on
421421the kind of token or break being printed. Rather than explain it here, we
422422recommend viewing its documented source directly.
423423
424- See: [ ` PrettyPrint.swift:printToken(...) ` ] ( ../Sources/SwiftFormatPrettyPrint /PrettyPrint.swift )
424+ See: [ ` PrettyPrint.swift:printToken(...) ` ] ( ../Sources/SwiftFormat/PrettyPrint /PrettyPrint.swift )
425425
426426## Differences from Oppen's Algorithm
427427
0 commit comments