From 5d083847e58c885dffc21c6fe9bcbb3e3796eaaa Mon Sep 17 00:00:00 2001 From: Valeriy Van Date: Thu, 18 Sep 2025 11:17:33 +0200 Subject: [PATCH] Fix doc comment in MutableSpan.swift --- stdlib/public/core/Span/MutableSpan.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/public/core/Span/MutableSpan.swift b/stdlib/public/core/Span/MutableSpan.swift index 15e0314d1c8c7..ae14e94326546 100644 --- a/stdlib/public/core/Span/MutableSpan.swift +++ b/stdlib/public/core/Span/MutableSpan.swift @@ -281,7 +281,7 @@ extension MutableSpan where Element: BitwiseCopyable { @_originallyDefinedIn(module: "Swift;CompatibilitySpan", SwiftCompatibilitySpan 6.2) extension MutableSpan where Element: ~Copyable { - /// Accesses the element at the specified position in the `Span`. + /// Accesses the element at the specified position in the `MutableSpan`. /// /// - Parameter position: The offset of the element to access. `position` /// must be greater or equal to zero, and less than `count`. @@ -300,7 +300,7 @@ extension MutableSpan where Element: ~Copyable { } } - /// Accesses the element at the specified position in the `Span`. + /// Accesses the element at the specified position in the `MutableSpan`. /// /// This subscript does not validate `position`; this is an unsafe operation. ///