Skip to content

Commit

Permalink
swiftlint
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMoonThatRises committed Aug 20, 2024
1 parent d2745a6 commit 7fbfa5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

// https://gist.github.com/mwaterfall/25b4a6a06dc3309d9555
fileprivate let characterEntities: [String: Character] = [
private let characterEntities: [String: Character] = [
// XML predefined entities:
""": "\"",
"&": "&",
Expand Down
6 changes: 3 additions & 3 deletions PortalBook/Utils/CalendarHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class CalendarHelper {
}

public func buildDayView(_ date: Date,
_ isCurrentMonth: Bool,
selectedDate: Binding<Date?>?,
range: Binding<MDateRange?>?) -> BuildDayView {
_ isCurrentMonth: Bool,
selectedDate: Binding<Date?>?,
range: Binding<MDateRange?>?) -> BuildDayView {
return BuildDayView(date: date,
color: getDateColor(date),
isCurrentMonth: isCurrentMonth,
Expand Down

0 comments on commit 7fbfa5e

Please sign in to comment.