Skip to content

Commit 83a6ed9

Browse files
authored
Merge pull request #825 from ahoppen/soundess
Address two soundness issues
2 parents 9fb082f + 77edc43 commit 83a6ed9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/create-release-commits.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [[ -z "$SWIFT_SYNTAX_TAG" || -z "$SWIFT_FORMAT_VERSION" ]]; then
1414
fi
1515

1616
# Without this, we can't perform git operations in GitHub actions.
17-
git config --global --add safe.directory $(realpath .)
17+
git config --global --add safe.directory "$(realpath .)"
1818

1919
git config --local user.name 'swift-ci'
2020
git config --local user.email '[email protected]'

Tests/SwiftFormatTests/PrettyPrint/RespectsExistingLineBreaksTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SwiftFormat
22

3-
/// Sanity checks and regression tests for the `respectsExistingLineBreaks` configuration setting
3+
/// Basic checks and regression tests for the `respectsExistingLineBreaks` configuration setting
44
/// in both true and false states.
55
final class RespectsExistingLineBreaksTests: PrettyPrintTestCase {
66
func testExpressions() {

0 commit comments

Comments
 (0)