Hello ✌️, in [/Sources/Operators/Internal/Timer.swift](https://github.com/CombineCommunity/CombineExt/blob/main/Sources/Operators/Internal/Timer.swift) there are warnings in [func addSubscriber<S: Subscriber>(_ sub: S)](https://github.com/CombineCommunity/CombineExt/blob/main/Sources/Operators/Internal/Timer.swift#L164) and [internal func receive<S: Subscriber>(subscriber: S)](https://github.com/CombineCommunity/CombineExt/blob/main/Sources/Operators/Internal/Timer.swift#L232) like `Generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in Swift 6`. <img width="1440" alt="warning-receive" src="https://github.com/CombineCommunity/CombineExt/assets/6305613/832e32f2-de79-4534-8f5a-829d3e3f45f5"> <img width="1439" alt="warning-addSubscriber" src="https://github.com/CombineCommunity/CombineExt/assets/6305613/9a65fc2a-181f-479b-a267-d2ffd9bde1b3"> This can very easily be fixed by renaming the Generics of the methods. I would like to provide a PR to solve this. Cheers, Andy