Minor fix to Event enum case names

This commit is contained in:
freak4pc 2018-07-18 15:58:08 +03:00 committed by Krunoslav Zaher
parent 9257153925
commit 8e9d26720f

View File

@ -5,9 +5,9 @@ Design Rationale
```Swift
enum Event<Element> {
case Next(Element) // next element of a sequence
case Error(Error) // sequence failed with error
case Completed // sequence terminated successfully
case next(Element) // next element of a sequence
case error(Error) // sequence failed with error
case completed // sequence terminated successfully
}
```