Skip to content

Commit

Permalink
Fixed warning in Example project when printing a Plan.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgallagher-venmo committed Sep 13, 2018
1 parent 059847d commit a1b15e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example/Shared/QuizTrainManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ extension QuizTrainManager {
print("Plan creation completed. \(plan.url)")

guard let planEntries = plan.entries, planEntries.count > 0 else {
print("Aborting: There are no entries in the plan: \(plan)")
print("Aborting: There are no entries in the plan: \(String(describing: plan))")
return
}

Expand Down

0 comments on commit a1b15e1

Please sign in to comment.