-
Notifications
You must be signed in to change notification settings - Fork 94
Closed
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededrefactorRefactor code to improve qualityRefactor code to improve quality
Description
Terms
- I have searched open and closed issues
- I agree to follow Scribe-iOS' Code of Conduct
Issue
var i = 0
while i < 3 {
// doing work here
i += 1
}
The for loop is a better alternative here, like
for i in 0..<3 {
// doing work here
}
andrewtavis
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededrefactorRefactor code to improve qualityRefactor code to improve quality
Type
Projects
Status
Done