Skip to content

Commit 6a49214

Browse files
authored
fix manual_grade
1 parent 6e4c0c0 commit 6a49214

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

_docs/instructor/course_settings/rainbow_grades/customization_basics.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,20 @@ It can contain the following:
7474
This array is unrelated to benchmarks.
7575

7676
* **field:** ``"manual_grade"``
77-
**type:** _associative array / mapping from string to associative array_
77+
**type:** _array of associative arrays_
7878

79-
For each student that you want to assign a manual grade to, their id must
80-
be mapped to an associative array with a field ``"grade"`` mapped to a string
81-
with the letter grade you want to give them, and ``"note"`` containing any note
82-
about the adjustment. The note is only visible to the instructor. For example,
79+
For each student that you want to assign a manual grade to, add an item to
80+
``"manual_grade"`` with fields ``"user"``, ``"grade"``, and ``"note"`` containing
81+
any note about the adjustment. The note is only visible to the instructor. For example,
8382
to give user ``smithj`` a grade lettter of ``D`` with a reason of
8483
``"Put in extraordinary effort."``:
8584

8685
```json
87-
"smithj" : {
86+
"manual_grade" : [{
87+
"user":"smithj",
8888
"grade": "D",
8989
"note": "Put in extraordinary effort."
90-
}
90+
}]
9191
```
9292

9393
* **field:** ``"warning"``

0 commit comments

Comments
 (0)