From 67ce74c80f1e51530d57dd00089a894c8c89a4f3 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Tue, 11 Nov 2025 09:59:05 -0500 Subject: [PATCH] Fix a typo in exit tests documentation. Add a missing word in the exit tests documentation. Resolves #1372. --- Sources/Testing/Testing.docc/exit-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Testing/Testing.docc/exit-testing.md b/Sources/Testing/Testing.docc/exit-testing.md index fc00bf31d..a94bfbd78 100644 --- a/Sources/Testing/Testing.docc/exit-testing.md +++ b/Sources/Testing/Testing.docc/exit-testing.md @@ -128,7 +128,7 @@ value using the `as` operator: Every value you capture in an exit test must conform to [`Sendable`](https://developer.apple.com/documentation/swift/sendable) and [`Codable`](https://developer.apple.com/documentation/swift/codable). Each value is encoded by the parent process using [`encode(to:)`](https://developer.apple.com/documentation/swift/encodable/encode(to:)) -and is decoded by the child process [`init(from:)`](https://developer.apple.com/documentation/swift/decodable/init(from:)) +and is decoded by the child process using [`init(from:)`](https://developer.apple.com/documentation/swift/decodable/init(from:)) before being passed to the exit test body. If a captured value's type does not conform to both `Sendable` and `Codable`, or