Skip to content

Commit

Permalink
Renamed Variables for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
patchthecode committed Oct 22, 2016
1 parent 0c0e9f7 commit 3eca0fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sources/CalendarStructs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,9 @@ struct JTAppleDateConfigGenerator {
/// Contains the information for visible dates of the calendar.
public struct DateSegmentInfo {
/// Visible pre-dates
public let predates: [Date]
public let indates: [Date]
/// Visible month-dates
public let monthDates: [Date]
/// Visible post-dates
public let postdates: [Date]
public let outdates: [Date]
}
2 changes: 1 addition & 1 deletion Sources/UserInteractionFunctions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ extension JTAppleCalendarView {
}
}

let retval = DateSegmentInfo(predates: inDates, monthDates: monthDates, postdates: outDates)
let retval = DateSegmentInfo(indates: inDates, monthDates: monthDates, outdates: outDates)
completionHandler(retval)
}

Expand Down

0 comments on commit 3eca0fd

Please sign in to comment.