Skip to content

Commit 80f6e98

Browse files
committed
Fix documentation issue
1 parent 12a2f0d commit 80f6e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Extensions/Array/Array+Selectors.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public extension Array where Element: Equatable {
1919
///
2020
/// - Parameter subject: The element to remove from the array.
2121
/// - 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.")
22+
@available(*, deprecated, renamed: "removingAll", message: "Use `removingAll(subject:)` instead.")
2323
func removing(subject: Element) -> [Element] {
2424
self.removingAll(subject: subject)
2525
}

0 commit comments

Comments
 (0)