From e9a1a0ee08bd44c9571fdd887f5bd925d04dcff0 Mon Sep 17 00:00:00 2001 From: JasonGrace2282 Date: Sat, 12 Oct 2024 09:42:14 -0400 Subject: [PATCH] fix typo Source -> Score --- docs/source/usage/graders/writing_graders.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/usage/graders/writing_graders.rst b/docs/source/usage/graders/writing_graders.rst index 14793901..33d81317 100644 --- a/docs/source/usage/graders/writing_graders.rst +++ b/docs/source/usage/graders/writing_graders.rst @@ -157,9 +157,9 @@ Each submission has a "Score" field that can be set by the grader. If this field you will be able to see a list of each student's scores on the assignment's page, which is designed to make entering grades into the gradebook easier. -To set this field, simply print ``Source: `` at the very end, to :obj:`sys.stdout`. For example:: +To set this field, simply print ``Score: `` at the very end, to :obj:`sys.stdout`. For example:: - print("Source: 10%") + print("Score: 10%") Note that the score can be printed as a percent (``10%``) or as a number of points. In both cases, they are interpreted as being out of the "Points possible" value set on the assignment "Edit" page.