Skip to content

Commit

Permalink
Merge pull request modo-studio#119 from konyu/develop
Browse files Browse the repository at this point in the history
Fix: iterator
Pedro Piñera Buendía committed Jan 22, 2015
2 parents b64ca24 + d838509 commit 080b9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Core/SugarRecordResults.swift
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ public class SRResultsGenerator: GeneratorType {
init(results: SugarRecordResults)
{
self.results = results
nextIndex = 0
nextIndex = results.count - 1
}

public func next() -> AnyObject?

0 comments on commit 080b9b3

Please sign in to comment.