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 @@ -106,7 +106,7 @@ extension OutputRawSpan {
106106 /// memory.
107107 ///
108108 /// - Parameters:
109- /// - buffer: an `UnsafeMutableBufferPointer ` to be initialized
109+ /// - buffer: an `UnsafeMutableRawBufferPointer ` to be initialized
110110 /// - initializedCount: the number of initialized bytes
111111 /// at the beginning of `buffer`.
112112 @unsafe
@@ -124,7 +124,7 @@ extension OutputRawSpan {
124124 }
125125 _precondition (
126126 0 <= initializedCount && initializedCount <= buffer. count,
127- " OutputSpan count is not within capacity"
127+ " OutputRawSpan count is not within capacity"
128128 )
129129 unsafe self. init (
130130 _uncheckedBuffer: buffer, initializedCount: initializedCount
@@ -139,7 +139,7 @@ extension OutputRawSpan {
139139 /// memory.
140140 ///
141141 /// - Parameters:
142- /// - buffer: an `UnsafeMutableBufferPointer ` to be initialized
142+ /// - buffer: a `Slice<UnsafeMutableRawBufferPointer> ` to be initialized
143143 /// - initializedCount: the number of initialized bytes
144144 /// at the beginning of `buffer`.
145145 @unsafe
You can’t perform that action at this time.
0 commit comments