Skip to content

Commit 7e691f8

Browse files
author
Lance Parker
committed
Correct file name
1 parent 4b4f250 commit 7e691f8

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

stdlib/public/core/ArrayShared.swift

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Arrays.swift.gyb -------------------------------------*- swift -*-===//
1+
//===--- ArrayShared.swift ------------------------------------*- swift -*-===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -8,21 +8,6 @@
88
// See https://swift.org/LICENSE.txt for license information
99
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
1010
//
11-
//===----------------------------------------------------------------------===//
12-
//
13-
// Three generic, mutable array-like types with value semantics.
14-
//
15-
// - `ContiguousArray<Element>` is a fast, contiguous array of `Element` with
16-
// a known backing store.
17-
//
18-
// - `ArraySlice<Element>` presents an arbitrary subsequence of some
19-
// contiguous sequence of `Element`s.
20-
//
21-
// - `Array<Element>` is like `ContiguousArray<Element>` when `Element` is not
22-
// a reference type or an Objective-C existential. Otherwise, it may use
23-
// an `NSArray` bridged from Cocoa for storage.
24-
//
25-
//===----------------------------------------------------------------------===//
2611

2712
/// This type is used as a result of the _checkSubscript call to associate the
2813
/// call with the array access call it guards.

0 commit comments

Comments
 (0)