[stdlib] Indent bullet continuations in doc comments

The text is a lot more readable that way.

Swift SVN r28471
This commit is contained in:
Dave Abrahams
2015-05-12 16:59:08 +00:00
parent 340e4d8f8a
commit 106b39a497
50 changed files with 162 additions and 161 deletions

View File

@@ -33,8 +33,8 @@ extension String.UTF16View.Index : RandomAccessIndexType {
/// Return `self` offset by `n` steps.
///
/// - returns: If `n > 0`, the result of applying `successor` to
/// `self` `n` times. If `n < 0`, the result of applying
/// `predecessor` to `self` `-n` times. Otherwise, `self`.
/// `self` `n` times. If `n < 0`, the result of applying
/// `predecessor` to `self` `-n` times. Otherwise, `self`.
///
/// - complexity: O(1)
public func advancedBy(x: Int) -> String.UTF16View.Index {