Skip to content

Commit 8e4f98f

Browse files
author
Alexis Beingessner
committed
[docs] downgrade internal notes to normal comments.
1 parent 3d0d3e1 commit 8e4f98f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

stdlib/public/core/UnsafePointer.swift.gyb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -486,27 +486,27 @@ extension ${Self} : CustomPlaygroundQuickLookable {
486486
}
487487
}
488488

489-
/// - Note: Strideable's implementation is potentially less efficient and cannot
490-
/// handle misaligned pointers.
489+
// - Note: Strideable's implementation is potentially less efficient and cannot
490+
// handle misaligned pointers.
491491
@_transparent
492492
public func == <Pointee>(
493493
lhs: ${Self}<Pointee>, rhs: ${Self}<Pointee>
494494
) -> Bool {
495495
return Bool(Builtin.cmp_eq_RawPointer(lhs._rawValue, rhs._rawValue))
496496
}
497497

498-
/// - Note: Strideable's implementation is potentially less efficient and cannot
499-
/// handle misaligned pointers.
500-
///
501-
/// - Note: This is an unsigned comparison unlike Strideable's implementation.
498+
// - Note: Strideable's implementation is potentially less efficient and cannot
499+
// handle misaligned pointers.
500+
//
501+
// - Note: This is an unsigned comparison unlike Strideable's implementation.
502502
@_transparent
503503
public func < <Pointee>(lhs: ${Self}<Pointee>, rhs: ${Self}<Pointee>) -> Bool {
504504
return Bool(Builtin.cmp_ult_RawPointer(lhs._rawValue, rhs._rawValue))
505505
}
506506

507-
/// - Note: The following family of operator overloads are redundant
508-
/// with Strideable. However, optimizer improvements are needed
509-
/// before they can be removed without affecting performance.
507+
// - Note: The following family of operator overloads are redundant
508+
// with Strideable. However, optimizer improvements are needed
509+
// before they can be removed without affecting performance.
510510

511511
/// - Precondition: The result is within bounds of the same allocation.
512512
@_transparent

0 commit comments

Comments
 (0)