Skip to content

Commit 21d5aec

Browse files
committed
course peer grading: slight improvements
1 parent a055aab commit 21d5aec

File tree

1 file changed

+2
-2
lines changed
  • src/packages/frontend/course/assignments

1 file changed

+2
-2
lines changed

src/packages/frontend/course/assignments/actions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ export class AssignmentsActions {
451451
content += `\
452452
\n\n\n# Peer graded\n\n
453453
Your assignment was peer graded by other students.
454-
You can find the comments they made in the folders below.\
454+
You can find the comments they made above and any directly to your work in the folders below.\
455455
`;
456456
}
457457

@@ -1043,7 +1043,7 @@ ${details}
10431043
if (!allComments[student_id]) {
10441044
const studentComments = comments
10451045
.filter((x) => x.trim())
1046-
.map((x) => `- ${x}`)
1046+
.map((x) => `- ${x.trim()}`)
10471047
.join("\n\n");
10481048
allComments[student_id] = `Grades: ${grades.join(", ")}\n\n${
10491049
studentComments ? "Student Comments:\n" + studentComments : ""

0 commit comments

Comments
 (0)