diff --git a/app/presenters/analyze/graph/students_and_teachers_and_parents.rb b/app/presenters/analyze/graph/students_and_teachers_and_parents.rb index a41de9bc..7cfd5e86 100644 --- a/app/presenters/analyze/graph/students_and_teachers_and_parents.rb +++ b/app/presenters/analyze/graph/students_and_teachers_and_parents.rb @@ -5,7 +5,7 @@ module Analyze class StudentsAndTeachersAndParents include Analyze::Graph::Column def to_s - "Students & Teachers & Parents" + "Students, Teachers & Parents" end def slug diff --git a/app/presenters/analyze/slice/students_and_teachers_and_parents.rb b/app/presenters/analyze/slice/students_and_teachers_and_parents.rb index 08f66efd..18db6899 100644 --- a/app/presenters/analyze/slice/students_and_teachers_and_parents.rb +++ b/app/presenters/analyze/slice/students_and_teachers_and_parents.rb @@ -1,7 +1,7 @@ module Analyze module Slice class StudentsAndTeachersAndParents < Base - def initialize(graph:, label: "Students & Teachers & Parents", slug: "students-and-teachers-and-pareents") + def initialize(graph:, label: "Students, Teachers & Parents", slug: "students-and-teachers-and-pareents") super(label:, slug:, graph:) end end