From 4528c2fe6d8521e36a8c35f9754b987a78267533 Mon Sep 17 00:00:00 2001 From: Jack Stone Date: Fri, 20 Sep 2024 14:47:33 +0100 Subject: [PATCH] Fix documentation warnings --- .../Combine to RxSwift/Publisher+AsInfallible.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/CombineRx/Interoperability/Combine to RxSwift/Publisher+AsInfallible.swift b/Sources/CombineRx/Interoperability/Combine to RxSwift/Publisher+AsInfallible.swift index 7ef33dd..6e228dd 100644 --- a/Sources/CombineRx/Interoperability/Combine to RxSwift/Publisher+AsInfallible.swift +++ b/Sources/CombineRx/Interoperability/Combine to RxSwift/Publisher+AsInfallible.swift @@ -35,7 +35,7 @@ extension Publisher { /// /// If any error is encountered, the provided `element` is returned. /// - /// - Parameter onErrorJustReturn: The element to return in the event of an error. + /// - Parameter publisher: The element to return in the event of an error. /// /// - Returns: An RxSwift `Infallible` that is the bridged transformation of the given `Publisher`. /// @@ -61,7 +61,7 @@ extension Publisher { /// /// If any error is encountered, the provided `publisher` is used to fall back. /// - /// - Parameter onErrorFallbackTo: A fallback publisher that is returned in the event of an error. + /// - Parameter publisher: A fallback publisher that is returned in the event of an error. /// /// - Returns: An RxSwift `Infallible` that is the bridged transformation of the given `Publisher`. ///