Skip to content

Commit 2fd98d2

Browse files
authored
Fixed typo for cond and made rubric clearer
1 parent 3b48d82 commit 2fd98d2

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

www/assignments/3.scrbl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ true in general for Racket. The parser should reject any
8989

9090

9191
The meaning of a @racket[cond] expression is computed by evaluating
92-
each expression @racket[_e-pi] in order until the first one that is
92+
each expression @racket[_e-pi] in order until the first one that
9393
does not evaluate to @racket[#f] is found, in which case, the corresponding expression
9494
@racket[_e-ai] is evaluated and its value is the value of the
9595
@racket[cond] expression. If no such @racket[_e-pi] exists, the
@@ -294,29 +294,29 @@ Handwritten Tests (proportionally graded)
294294

295295
@itemlist[
296296

297-
@item{(50%) Public and non-public handwritten tests}
297+
@item{(50%) Public and non-public handwritten tests: Gradescope's @tt{all.rkt} will contain additional private tests that does not match the ones in the publicly given file}
298298

299299
]
300300

301301
Randomized Property Testing (must pass all the associated tests for each property)
302302

303303
@itemlist[
304304

305-
@item{(6.25) Correct intepreter for primitives}
305+
@item{(6.25%) Correct intepreter for primitives}
306306

307-
@item{(6.25) Correct compiler for primitives}
307+
@item{(6.25%) Correct compiler for primitives}
308308

309-
@item{(6.25) Correct intepreter for cond}
309+
@item{(6.25%) Correct intepreter for cond}
310310

311-
@item{(6.25) Correct compiler for cond}
311+
@item{(6.25%) Correct compiler for cond}
312312

313-
@item{(6.25) Correct intepreter for case}
313+
@item{(6.25%) Correct intepreter for case}
314314

315-
@item{(6.25) Correct compiler for case}
315+
@item{(6.25%) Correct compiler for case}
316316

317-
@item{(6.25) Correct intepreter}
317+
@item{(6.25%) Correct intepreter}
318318

319-
@item{(6.25) Correct compiler}
319+
@item{(6.25%) Correct compiler}
320320
]
321321

322322

0 commit comments

Comments
 (0)