File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -884,7 +884,7 @@ extension Array: RangeReplaceableCollection {
884
884
return _Buffer ( _buffer: newBuffer, shiftedToStartIndex: 0 )
885
885
}
886
886
887
- /// Construct a Array of `count` uninitialized elements.
887
+ /// Construct an Array of `count` uninitialized elements.
888
888
@inlinable
889
889
internal init ( _uninitializedCount count: Int ) {
890
890
_precondition ( count >= 0 , " Can't construct Array with count < 0 " )
@@ -903,7 +903,7 @@ extension Array: RangeReplaceableCollection {
903
903
}
904
904
905
905
/// Entry point for `Array` literal construction; builds and returns
906
- /// a Array of `count` uninitialized elements.
906
+ /// an Array of `count` uninitialized elements.
907
907
@inlinable
908
908
@_semantics ( " array.uninitialized " )
909
909
internal static func _allocateUninitialized(
@@ -936,7 +936,7 @@ extension Array: RangeReplaceableCollection {
936
936
}
937
937
938
938
/// Entry point for aborting literal construction: deallocates
939
- /// a Array containing only uninitialized elements.
939
+ /// an Array containing only uninitialized elements.
940
940
@inlinable
941
941
internal mutating func _deallocateUninitialized( ) {
942
942
// Set the count to zero and just release as normal.
You can’t perform that action at this time.
0 commit comments