File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ internal func forEachElement<C: CxxConvertibleToCollection>(
38
38
}
39
39
40
40
extension Array {
41
- /// Creates an array containing the elements of a C++ collection .
41
+ /// Creates an array containing the elements of a C++ container .
42
42
///
43
- /// This initializer copies each element of the C++ collection to a new Swift
43
+ /// This initializer copies each element of the C++ container to a new Swift
44
44
/// array.
45
45
///
46
46
/// - Complexity: O(*n*), where *n* is the number of elements in the C++
47
- /// collection .
47
+ /// container .
48
48
public init < C: CxxConvertibleToCollection > ( _ c: C )
49
49
where C. RawIterator. Pointee == Element {
50
50
@@ -54,13 +54,13 @@ extension Array {
54
54
}
55
55
56
56
extension Set {
57
- /// Creates an set containing the elements of a C++ collection .
57
+ /// Creates an set containing the elements of a C++ container .
58
58
///
59
- /// This initializer copies each element of the C++ collection to a new Swift
59
+ /// This initializer copies each element of the C++ container to a new Swift
60
60
/// set.
61
61
///
62
62
/// - Complexity: O(*n*), where *n* is the number of elements in the C++
63
- /// collection .
63
+ /// container .
64
64
public init < C: CxxConvertibleToCollection > ( _ c: C )
65
65
where C. RawIterator. Pointee == Element {
66
66
You can’t perform that action at this time.
0 commit comments