From d93778e3232b2451ee73dd8584c34908cbd610bc Mon Sep 17 00:00:00 2001 From: Alex Martini Date: Fri, 1 May 2020 16:01:15 -0700 Subject: [PATCH] Remove stray backtick in doc comment. Fixes (cherry picked from commit 710897852a85d72e383683b0a977859d12627576) --- stdlib/public/core/UnsafeBufferPointer.swift.gyb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/public/core/UnsafeBufferPointer.swift.gyb b/stdlib/public/core/UnsafeBufferPointer.swift.gyb index 8c66a6ef8546e..a0242df85313b 100644 --- a/stdlib/public/core/UnsafeBufferPointer.swift.gyb +++ b/stdlib/public/core/UnsafeBufferPointer.swift.gyb @@ -616,7 +616,7 @@ extension Unsafe${Mutable}BufferPointer { /// - repeatedValue: The instance to assign this buffer's memory to. /// /// Warning: All buffer elements must be initialized before calling this. - /// Assigning to part of the buffer must be done using the `assign(repeating:count:)`` + /// Assigning to part of the buffer must be done using the `assign(repeating:count:)` /// method on the buffer’s `baseAddress`. @inlinable // unsafe-performance public func assign(repeating repeatedValue: Element) {