@@ -31,7 +31,7 @@ The available cases are: `syntax`, `break`, `spaces`, `open`, `close`,
31
31
` newlines ` , ` comment ` , and ` verbatim ` . The behavior of each of them is
32
32
described below with pseudocode examples.
33
33
34
- See: [ ` Token.swift ` ] ( ../Sources/SwiftFormatPrettyPrint /Token.swift )
34
+ See: [ ` Token.swift ` ] ( ../Sources/SwiftFormat/PrettyPrint /Token.swift )
35
35
36
36
#### Syntax
37
37
@@ -326,7 +326,7 @@ beginning of a source file).
326
326
When we have visited all nodes in the AST, the array of printing tokens is then
327
327
passed on to the * scan* phase of the pretty-printer.
328
328
329
- See: [ ` TokenStreamCreator.swift ` ] ( ../Sources/SwiftFormatPrettyPrint /TokenStreamCreator.swift )
329
+ See: [ ` TokenStreamCreator.swift ` ] ( ../Sources/SwiftFormat/PrettyPrint /TokenStreamCreator.swift )
330
330
331
331
## Scan
332
332
@@ -346,7 +346,7 @@ After having iterated over the entire list of tokens and calculated their
346
346
lengths, we then loop over the tokens and call ` print ` for each token with its
347
347
corresponding length.
348
348
349
- See: [ ` PrettyPrint.swift:prettyPrint() ` ] ( ../Sources/SwiftFormatPrettyPrint /PrettyPrint.swift )
349
+ See: [ ` PrettyPrint.swift:prettyPrint() ` ] ( ../Sources/SwiftFormat/PrettyPrint /PrettyPrint.swift )
350
350
351
351
### Syntax Tokens
352
352
@@ -421,7 +421,7 @@ The logic for the `print` function is fairly complex and varies depending on
421
421
the kind of token or break being printed. Rather than explain it here, we
422
422
recommend viewing its documented source directly.
423
423
424
- See: [ ` PrettyPrint.swift:printToken(...) ` ] ( ../Sources/SwiftFormatPrettyPrint /PrettyPrint.swift )
424
+ See: [ ` PrettyPrint.swift:printToken(...) ` ] ( ../Sources/SwiftFormat/PrettyPrint /PrettyPrint.swift )
425
425
426
426
## Differences from Oppen's Algorithm
427
427
0 commit comments