Skip to content

Commit dc947b8

Browse files
authored
Merge pull request #2262 from glessard/se0405-misreplacements
Remove stray backticks from SE-0370
2 parents 6a8666a + e94c12a commit dc947b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

proposals/0370-pointer-family-initialization-improvements.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ extension UnsafeMutableBufferPointer {
136136
+++ func update<C>(fromContentsOf source: C) -> Index where C: Collection, C.Element == Element
137137
+++ func moveInitialize(fromContentsOf source: UnsafeMutableBufferPointer) -> Index
138138
+++ func moveInitialize(fromContentsOf source: Slice<UnsafeMutableBufferPointer>) -> Index
139-
+++ func moveUpdate(fromContentsOf source: `Self`) -> Index
140-
+++ func moveUpdate(fromContentsOf source: Slice<`Self`>) -> Index
139+
+++ func moveUpdate(fromContentsOf source: Self) -> Index
140+
+++ func moveUpdate(fromContentsOf source: Slice<Self>) -> Index
141141
+++ func deinitialize() -> UnsafeMutableRawBufferPointer
142142

143143
+++ func initializeElement(at index: Index, to value: Element)
@@ -512,7 +512,7 @@ extension UnsafeMutableBufferPointer {
512512
/// The memory region underlying `source` must be initialized. The
513513
/// memory regions referenced by `source` and this pointer must not overlap.
514514
/// - Returns: An index one past the index of the last element updated.
515-
public func moveUpdate(fromContentsOf source: `Self`) -> Index
515+
public func moveUpdate(fromContentsOf source: Self) -> Index
516516

517517
/// Updates this buffer's initialized memory initialized memory by
518518
/// moving every element from the source buffer slice,
@@ -536,7 +536,7 @@ extension UnsafeMutableBufferPointer {
536536
/// The memory region underlying `source` must be initialized. The
537537
/// memory regions referenced by `source` and this pointer must not overlap.
538538
/// - Returns: An index one past the index of the last element updated.
539-
public func moveUpdate(fromContentsOf source: Slice<`Self`>) -> Index
539+
public func moveUpdate(fromContentsOf source: Slice<Self>) -> Index
540540

541541
/// Deinitializes every instance in this buffer.
542542
///

0 commit comments

Comments
 (0)