Skip to content

Commit baae7ee

Browse files
committed
Fix spelling of inlinable
1 parent e582a45 commit baae7ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/ArrayBufferProtocol.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ extension _ArrayBufferProtocol where Indices == Range<Int>{
128128

129129
// Make sure the compiler does not inline _copyBuffer to reduce code size.
130130
@inline(never)
131-
@inlineable // This code should be specializable such that copying an array is
132-
// fast and does not end up in an unspecialized entry point.
131+
@inlinable // This code should be specializable such that copying an array is
132+
// fast and does not end up in an unspecialized entry point.
133133
internal init(copying buffer: Self) {
134134
let newBuffer = _ContiguousArrayBuffer<Element>(
135135
_uninitializedCount: buffer.count, minimumCapacity: buffer.count)

0 commit comments

Comments
 (0)