Skip to content

Commit 93ab095

Browse files
committed
Merge branch 'main' of github.com:cmsc430/www
2 parents 4626aa3 + e98970d commit 93ab095

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

www/assignments/3.scrbl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ There are two new kinds of expression constructors: @racket[Cond] and
228228
@racket[Case]. A @racket[Cond] AST node contains a list of
229229
cond-clauses and expression, which the expression of the @racket[else]
230230
clause. Each cond-clause is represented by a @racket[Clause]
231-
structure containing two expressions: the right-hand-side of the
232-
clause which is used to determine whether the left-hand-side is
233-
evaluated, and the left-hand-side expression.
231+
structure containing two expressions: the left-hand-side of the
232+
clause which is used to determine whether the right-hand-side is
233+
evaluated, and the right-hand-side expression.
234234

235235
The @racket[Case] AST node contains three things: an expression that
236236
is the subject of the dispatch (i.e. the expression that is evaluated

www/defns.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(define prof (link "https://www.cs.umd.edu/~dvanhorn/" "David Van Horn"))
66
(define prof-pronouns "he/him")
7-
(define prof-email "dvanhorn")
7+
(define prof-email "dvanhorn@cs.umd.edu")
88
(define prof-initials "DVH")
99

1010
(define semester "summer")
@@ -28,8 +28,8 @@
2828
(define racket-version "8.7")
2929

3030
(define staff
31-
(list (list "William Wegand" "wwegand@terpmail.umd.edu" "TBD")
32-
(list "Pierce Darragh" "pdarragh@umd.edu" "TBD")
31+
(list (list "William Wegand" "wwegand@terpmail.umd.edu" "3:00-4:00PM MTWThF")
32+
(list "Pierce Darragh" "pdarragh@umd.edu" "10:30-11:30AM MTWTh")
3333
))
3434

3535

0 commit comments

Comments
 (0)