Skip to content

Commit 54c8d4a

Browse files
committed
Touch up assignment.
1 parent 17991f1 commit 54c8d4a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

www/assignments/8.scrbl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ same, but constructs a vector.
5858
These are not directly useful in implementing the patterns above, but
5959
do make it easier to write examples and tests.
6060

61-
@section[#:tag-prefix "a5-" #:style 'unnumbered #:tag "list"]{List patterns}
61+
@section[#:tag-prefix "a8-" #:style 'unnumbered #:tag "list"]{List patterns}
6262

6363
The @racket[(list _p1 ... _pn)] pattern matches a list of elements. The
6464
pattern matches a list with as many elements as there are patterns
@@ -76,7 +76,7 @@ respective pattern.
7676
[(list (list x) (list 2)) x])
7777
]
7878

79-
@section[#:tag-prefix "a5-" #:style 'unnumbered #:tag "vector"]{Vector patterns}
79+
@section[#:tag-prefix "a8-" #:style 'unnumbered #:tag "vector"]{Vector patterns}
8080

8181
The @racket[(vector _p1 ... _pn)] pattern matches a vector of elements. The
8282
pattern matches a vector with as many elements as there are patterns
@@ -94,7 +94,7 @@ respective pattern.
9494
[(vector (vector x) (vector 2)) x])
9595
]
9696

97-
@section[#:tag-prefix "a5-" #:style 'unnumbered #:tag "vector"]{Predicate patterns}
97+
@section[#:tag-prefix "a8-" #:style 'unnumbered #:tag "vector"]{Predicate patterns}
9898

9999
The @racket[(? _f)] pattern matches any value for which the predicate
100100
@racket[_f] returns a true value (any value other than @racket[#f])
@@ -116,7 +116,7 @@ the name of a user defined function.
116116
]
117117

118118

119-
@section[#:tag-prefix "a5-" #:style 'unnumbered]{Submitting}
119+
@section[#:tag-prefix "a8-" #:style 'unnumbered]{Submitting}
120120

121121
Submit a zip file containing your work to Gradescope. Use @tt{make
122122
submit.zip} from within the @tt{knock-plus} directory to create a zip

www/defns.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"Thursday, October 23, 11:59PM"
6262
"Tuesday, November 4, 11:59PM"
6363
"Tuesday, November 11, 11:59PM"
64-
"Thursday, December 4, 11:59PM"
64+
"Tuesday, December 9, 11:59PM"
6565
#;"Thursday, December 4, 11:59PM")
6666
(sub1 i)))
6767

0 commit comments

Comments
 (0)