fixed things flagged in code review

This commit is contained in:
Shawn Erickson
2016-03-07 11:07:22 -08:00
parent 68ff64357c
commit 371c0f6e68
4 changed files with 11 additions and 9 deletions

View File

@@ -115,7 +115,7 @@ public struct LazyMapCollection<Base : Collection, Element>
@warn_unused_result
public func distance(from start: Index, to end: Index) -> Base.IndexDistance {
return _base.distance(from:start, to: end)
return _base.distance(from: start, to: end)
}
/// Returns an iterator over the elements of this sequence.