Skip to content

Commit d39531d

Browse files
committed
Add code highlighting
Signed-off-by: Gray Campbell <12163070+graycampbell@users.noreply.github.com>
1 parent 77644f9 commit d39531d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SwiftSyntaxSugar
22

3-
SwiftSyntaxSugar is a library that provides syntactic sugar and helpful extensions for [SwiftSyntax](https://github.com/swiftlang/swift-syntax). The purpose of this library is to improve the readability and maintainability of code written using SwiftSyntax.
3+
`SwiftSyntaxSugar` is a library that provides syntactic sugar and helpful extensions for [`SwiftSyntax`](https://github.com/swiftlang/swift-syntax).
4+
The purpose of this library is to improve the readability and maintainability of code written using `SwiftSyntax`.
45

56
- [Example](#example)
67
- [Installation](#installation)
@@ -37,15 +38,15 @@ let isProtocolActorConstrained = protocolDeclaration.inheritanceClause?.inherite
3738

3839
## Installation
3940

40-
To add SwiftSyntaxSugar to a Swift package manifest file:
41-
- Add the SwiftSyntaxSugar package to your package's `dependencies`:
41+
To add `SwiftSyntaxSugar` to a Swift package manifest file:
42+
- Add the `SwiftSyntaxSugar` package to your package's `dependencies`:
4243
```swift
4344
.package(
4445
url: "https://github.com/fetch-rewards/SwiftSyntaxSugar.git",
4546
from: "<#latest SwiftSyntaxSugar tag#>"
4647
)
4748
```
48-
- Add the SwiftSyntaxSugar product to your target's `dependencies`:
49+
- Add the `SwiftSyntaxSugar` product to your target's `dependencies`:
4950
```swift
5051
.product(name: "SwiftSyntaxSugar", package: "SwiftSyntaxSugar")
5152
```

0 commit comments

Comments
 (0)