From f8c58036a402e4d8dd4a60426954621c7f8b8e72 Mon Sep 17 00:00:00 2001 From: Wowbagger and his liquid lunch <55120045+WowbaggersLiquidLunch@users.noreply.github.com> Date: Fri, 22 May 2020 16:17:34 -0400 Subject: [PATCH] fix typo in remove(_:)'s documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "newMember" → "member" --- stdlib/public/core/SetAlgebra.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/public/core/SetAlgebra.swift b/stdlib/public/core/SetAlgebra.swift index 75ecabdfd28be..8ef4c914d4e7a 100644 --- a/stdlib/public/core/SetAlgebra.swift +++ b/stdlib/public/core/SetAlgebra.swift @@ -202,7 +202,7 @@ public protocol SetAlgebra: Equatable, ExpressibleByArrayLiteral { /// - Parameter member: The element of the set to remove. /// - Returns: For ordinary sets, an element equal to `member` if `member` is /// contained in the set; otherwise, `nil`. In some cases, a returned - /// element may be distinguishable from `newMember` by identity comparison + /// element may be distinguishable from `member` by identity comparison /// or some other means. /// /// For sets where the set type and element type are the same, like