Skip to content

Commit

Permalink
grade-school: Fix stubs arguments
Browse files Browse the repository at this point in the history
- use school instead of students in line with exercise description and
  `example.el`
- fix `add` function stub missing two arguments
- fix `grade` function stub having wrong order of arguments
  • Loading branch information
fapdash committed Jun 18, 2024
1 parent 2f59bf9 commit 0448250
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/practice/grade-school/grade-school.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
;;; Code:


(defun roster (students)
(defun roster (school)
(error "Delete this S-Expression and write your own implementation"))

(defun add (students)
(defun add (school name grade)
(error "Delete this S-Expression and write your own implementation"))

(defun grade (desired-grade students)
(defun grade (school grade)
(error "Delete this S-Expression and write your own implementation"))


Expand Down

0 comments on commit 0448250

Please sign in to comment.