Skip to content

Commit df53b8a

Browse files
committed
Fixup broken links
Fixes up several broken links in the documentation: - ExamplePlugin was rolled in to the MacroExamples in #2222 but the link was not updated. - A link the changelog pointed to sourcekit-lsp when it should have been swift-syntax. - The Parsing Basics document has moved.
1 parent 2a731fb commit df53b8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Contributor Documentation/Changing Swift Syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Node(
6565

6666
Added syntactic elements will require corresponding changes to the included
6767
SwiftParser library. For an introduction on parsing Swift nodes, see
68-
[the article on Parsing Basics](https://github.com/swiftlang/swift-syntax/tree/main/Sources/SwiftParser/SwiftParser.docc/ParsingBasics.md).
68+
[the article on Parsing Basics](./Parsing%20Basics.md).
6969

7070
When updating nodes, certain clients of SwiftSyntax that are relying upon those
7171
nodes will need to be changed in tandem. For example, the

Examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Each example can be executed by navigating into this folder and running `swift r
44

55
- [AddOneToIntegerLiterals](Sources/AddOneToIntegerLiterals/AddOneToIntegerLiterals.swift): Command line tool to add 1 to every integer literal in a source file
66
- [CodeGenerationUsingSwiftSyntaxBuilder](Sources/CodeGenerationUsingSwiftSyntaxBuilder/CodeGenerationUsingSwiftSyntaxBuilder.swift): Code-generate a simple source file using SwiftSyntaxBuilder
7-
- [ExamplePlugin](Sources/ExamplePlugin): Compiler plugin executable using [`SwiftCompilerPlugin`](../Sources/SwiftCompilerPlugin)
7+
- [ExamplePlugin](Examples/Sources/MacroExamples/Implementation/Plugin.swift): Compiler plugin executable using [`SwiftCompilerPlugin`](../Sources/SwiftCompilerPlugin)
88
- [MacroExamples](Sources/MacroExamples): A collection of Swift macros
99

1010
Furthermore, SwiftSyntax uses [`SwiftSyntaxBuilder`](../Sources/SwiftSyntaxBuilder) extensively to generate its own code. That code can be found in the [CodeGeneration](../CodeGeneration) package.

Release Notes/600.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
- `DeclGroupSyntax.introducer`
7070
- Description: The `DeclGroupSyntax` trait has an extra `introducer` property, ie. the keyword that introduces the declaration.
71-
- Issue: https://github.com/swiftlang/sourcekit-lsp/issues/2535
71+
- Issue: https://github.com/swiftlang/swift-syntax/issues/2535
7272
- Pull Request: https://github.com/swiftlang/swift-syntax/pull/2539
7373

7474
- `ExprSyntax.interpretedAsVersionTuple`

0 commit comments

Comments
 (0)