Skip to content

Commit

Permalink
fix typo Source -> Score
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 committed Oct 12, 2024
1 parent 7096bc8 commit e9a1a0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/usage/graders/writing_graders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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: <score>`` at the very end, to :obj:`sys.stdout`. For example::
To set this field, simply print ``Score: <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.
Expand Down

0 comments on commit e9a1a0e

Please sign in to comment.