Skip to content

Commit

Permalink
Wording tweak in analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
pcantrell committed Mar 21, 2017
1 parent 5b755fa commit 1703805
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/tasks/app.rake
Expand Up @@ -384,7 +384,7 @@ namespace :app do
end
puts

puts "Scheduling overlaps that will upset the most people"
puts "Scheduling conflicts that would upset the most people"
puts
pairs = Attendance.connection.select_rows("
select a1.session_id s1,
Expand All @@ -408,7 +408,7 @@ namespace :app do
status = if !s1.timeslot_id || !s2.timeslot_id
'(unscheduled)'
elsif s1.timeslot_id == s2.timeslot_id
'CONFLICT'
'CONFLICT AS SCHEDULED'
else
''
end
Expand Down

0 comments on commit 1703805

Please sign in to comment.