From 8f0f0a4ca115229cceea16f7348ef14129de78c9 Mon Sep 17 00:00:00 2001 From: Nicholas Kim Date: Sun, 21 Apr 2024 05:26:25 +0900 Subject: [PATCH] Fix a typo in comments in Recorded+Event.swift (#2568) --- RxTest/Recorded+Event.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RxTest/Recorded+Event.swift b/RxTest/Recorded+Event.swift index fda6de9da..23181791d 100644 --- a/RxTest/Recorded+Event.swift +++ b/RxTest/Recorded+Event.swift @@ -35,7 +35,7 @@ extension Recorded { /** Factory method for an `.error` event recorded at a given time with a given error. - - parameter time: Recorded virtual time the `.completed` event occurs. + - parameter time: Recorded virtual time the `.error` event occurs. */ public static func error(_ time: TestTime, _ error: Swift.Error, _ type: T.Type = T.self) -> Recorded> where Value == Event { Recorded(time: time, value: .error(error))