We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a2f0d commit 80f6e98Copy full SHA for 80f6e98
Sources/Extensions/Array/Array+Selectors.swift
@@ -19,7 +19,7 @@ public extension Array where Element: Equatable {
19
///
20
/// - Parameter subject: The element to remove from the array.
21
/// - Returns: A new array containing all elements of the original array except for those equal to `subject`.
22
- @available(*, deprecated, renamed: "removeAll", message: "Use `removingAll(subject:)` instead.")
+ @available(*, deprecated, renamed: "removingAll", message: "Use `removingAll(subject:)` instead.")
23
func removing(subject: Element) -> [Element] {
24
self.removingAll(subject: subject)
25
}
0 commit comments