Skip to content

Commit b8f8f9e

Browse files
committed
Fix broken links in PrettyPrinter.md
1 parent 4a3def9 commit b8f8f9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Documentation/PrettyPrinter.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -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
3232
described 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).
326326
When we have visited all nodes in the AST, the array of printing tokens is then
327327
passed 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
346346
lengths, we then loop over the tokens and call `print` for each token with its
347347
corresponding 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
421421
the kind of token or break being printed. Rather than explain it here, we
422422
recommend 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

Comments
 (0)