Move requirements out of abstracts.

Searched for "/// ..*Requires:" and did manual replacements.

Patch by Alex Martini.

Swift SVN r28465
This commit is contained in:
Dmitri Hrybenko
2015-05-12 07:39:52 +00:00
parent 631a4eff32
commit 1bc7b4c226
5 changed files with 21 additions and 14 deletions

View File

@@ -426,8 +426,9 @@ extension _ArrayBuffer {
}
/// Call `body(p)`, where `p` is an `UnsafeMutableBufferPointer`
/// over the underlying contiguous storage. Requires: such
/// contiguous storage exists or the buffer is empty
/// over the underlying contiguous storage.
///
/// Requires: such contiguous storage exists or the buffer is empty
public mutating func withUnsafeMutableBufferPointer<R>(
@noescape body: (UnsafeMutableBufferPointer<T>) -> R
) -> R {