Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stdlib/public/core/Span/MutableSpan.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand All @@ -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.
///
Expand Down