Skip to content

Commit 59894c8

Browse files
committed
docs: fix spelling of 'successfully'
1 parent a816d6d commit 59894c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftBuildTests/ArenaIndexingInfoTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ struct ArenaIndexingInfoTests: CoreBasedTests {
777777
let info = try await IndexingInfoResults(infoProducer.generateIndexingInfo(target, .macOS, filePath: projectDir.join("main.c").str))
778778
await info.checkIndexingInfo { info in
779779
do {
780-
// We should be able to successfuly run the resulting command line from indexing info
780+
// We should be able to successfully run the resulting command line from indexing info
781781
let success = try await Process.run(url: URL(fileURLWithPath: clangCompilerPath.str), arguments: info.clang.commandLineAsByteStrings.map { $0.asString }).isSuccess
782782
#expect(success)
783783
} catch {
@@ -860,7 +860,7 @@ struct ArenaIndexingInfoTests: CoreBasedTests {
860860
let info = try await IndexingInfoResults(infoProducer.generateIndexingInfo(target, .macOS, filePath: projectDir.join("main.swift").str))
861861
await info.checkIndexingInfo { info in
862862
do {
863-
// We should be able to successfuly run the resulting command line from indexing info
863+
// We should be able to successfully run the resulting command line from indexing info
864864
let success = try await Process.run(url: URL(fileURLWithPath: swiftCompilerPath.str), arguments: info.swift.commandLineAsByteStrings.map { $0.asString }).isSuccess
865865
#expect(success)
866866
} catch {

0 commit comments

Comments
 (0)