File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
229229cond-clauses and expression, which the expression of the @racket[else ]
230230clause. 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
235235The @racket[Case] AST node contains three things: an expression that
236236is the subject of the dispatch (i.e. the expression that is evaluated
Original file line number Diff line number Diff line change 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 " )
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
You can’t perform that action at this time.
0 commit comments