Skip to content

Commit 10027e2

Browse files
committed
Fix another typo
1 parent 135dc3c commit 10027e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

www/midterms/1.scrbl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,14 +277,14 @@ we can simplify the entire @racket[if] to its else branch.
277277

278278
@#reader scribble/comment-reader
279279
(racketblock
280-
(if (zero? (read-byte) 1 (zero? 0)))
280+
(if (zero? (read-byte)) 1 (zero? 0))
281281
)
282282

283283
Becomes:
284284

285285
@#reader scribble/comment-reader
286286
(racketblock
287-
(if (zero? (read-byte) 1 #t))
287+
(if (zero? (read-byte)) 1 #t)
288288
)
289289

290290
Since we don't know the value of @racket[read-byte] statically,

0 commit comments

Comments
 (0)