Skip to content

Commit fa669e1

Browse files
committed
Small typo fix
1 parent 5271a7b commit fa669e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BrickHack-Mobile/Controllers/ScheduleTableViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ class ScheduleTableViewController: UITableViewController {
3939

4040
// Set timer for timeline refresh function,
4141
// which runs each minute (while the screen is visible) and updates the timeline view if necessary.
42-
// @TODO: Change from 5s to change on every hour, effectively caching the result
42+
// @TODO: Change from 60s to change on every hour, effectively caching the result
4343
// (or maybe don't bother with cache and do it every time the view is loaded / minimal persistance)
44-
scheduleTimer = Timer.scheduledTimer(withTimeInterval: 5.0, repeats: true, block: { timer in
44+
scheduleTimer = Timer.scheduledTimer(withTimeInterval: 60.0, repeats: true, block: { timer in
4545

4646
// Determine which section is currently active
4747
// (by default, 0)

0 commit comments

Comments
 (0)