Skip to content

Commit ae9497d

Browse files
committed
[stdlib] Re-attach documentation comment
This removes a `FIXME` comment between the documentation for `UnsafeMutablePointer.initialize(with:count:)` that is preventing the documentation from attaching to the symbol.
1 parent 15b004c commit ae9497d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/UnsafePointer.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ public struct ${Self}<Pointee>
172172
///
173173
/// - Postcondition: The pointee is initialized; the value should eventually
174174
/// be destroyed or moved from to avoid leaks.
175-
// FIXME: add tests (since the `count` has been added)
176175
public func initialize(with newValue: Pointee, count: Int = 1) {
176+
// FIXME: add tests (since the `count` has been added)
177177
_debugPrecondition(count >= 0,
178178
"${Self}.initialize(with:): negative count")
179179
// Must not use `initializeFrom` with a `Collection` as that will introduce

0 commit comments

Comments
 (0)