Skip to content

Commit 7ac36f8

Browse files
committed
[SE-0456] call InlineArray by its name
1 parent e3b0d36 commit 7ac36f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proposals/0456-stdlib-span-properties.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ extension KeyValuePairs {
131131
}
132132
```
133133

134-
Conditionally to the acceptance of [`Vector`][SE-0453], we will also add the following:
134+
Following the acceptance of [`InlineArray`][SE-0453], we will also add the following:
135135

136136
```swift
137-
extension Vector where Element: ~Copyable {
138-
/// Share this vector's elements as a `Span`
137+
extension InlineArray where Element: ~Copyable {
138+
/// Share this `InlineArray`'s elements as a `Span`
139139
var span: Span<Element> { get }
140140
}
141141
```

0 commit comments

Comments
 (0)