diff --git a/collects/scribblings/htdp-langs/advanced.scrbl b/collects/scribblings/htdp-langs/advanced.scrbl index 7f6a0d81ec..e5da9b3675 100644 --- a/collects/scribblings/htdp-langs/advanced.scrbl +++ b/collects/scribblings/htdp-langs/advanced.scrbl @@ -294,21 +294,21 @@ The same as Intermediate's @|intm-local|, @|intm-letrec|, and @defidform[else] )]{ -The same as Beginner's @|beg-cond|, except that @scheme[else] can be +The same as Beginning's @|beg-cond|, except that @scheme[else] can be used with @scheme[case].} @defform[(if expr expr expr)]{ -The same as Beginner's @|beg-if|.} +The same as Beginning's @|beg-if|.} @deftogether[( @defform[(and expr expr expr ...)] @defform[(or expr expr expr ...)] )]{ -The same as Beginner's @|beg-and| and @|beg-or|.} +The same as Beginning's @|beg-and| and @|beg-or|.} @defform[(time expr)]{ @@ -326,4 +326,4 @@ Constants for the empty list, true, and false.} @defform[(require string)]{ -The same as Beginner's @|beg-require|.} +The same as Beginning's @|beg-require|.} diff --git a/collects/scribblings/htdp-langs/beginner-abbr.scrbl b/collects/scribblings/htdp-langs/beginner-abbr.scrbl index bbd80d9938..b6ab04abd8 100644 --- a/collects/scribblings/htdp-langs/beginner-abbr.scrbl +++ b/collects/scribblings/htdp-langs/beginner-abbr.scrbl @@ -17,7 +17,7 @@ @(bd beg-define beg-define-struct beg-cond beg-if beg-and beg-or beg-require) -@title[#:style 'toc]{Beginner Student with List Abbreviations} +@title[#:style 'toc]{Beginning Student with List Abbreviations} @declare-exporting[lang/htdp-beginner-abbr] @@ -138,12 +138,12 @@ also be written with @scheme[unquote-splicing].} @defidform[lambda] )]{ -The same as Beginner's @|beg-define|.} +The same as Beginning's @|beg-define|.} @defform[(define-struct structid (fieldid ...))]{ -The same as Beginner's @|beg-define-struct|.} +The same as Beginning's @|beg-define-struct|.} @deftogether[( @@ -151,18 +151,18 @@ The same as Beginner's @|beg-define-struct|.} @defidform[else] )]{ -The same as Beginner's @|beg-cond|.} +The same as Beginning's @|beg-cond|.} @defform[(if expr expr expr)]{ -The same as Beginner's @|beg-if|.} +The same as Beginning's @|beg-if|.} @deftogether[( @defform[(and expr expr expr ...)] @defform[(or expr expr expr ...)] )]{ -The same as Beginner's @|beg-and| and @|beg-or|.} +The same as Beginning's @|beg-and| and @|beg-or|.} @deftogether[( @defthing[empty empty?] @@ -174,4 +174,4 @@ Constants for the empty list, true, and false.} @defform[(require string)]{ -The same as Beginner's @|beg-require|.} +The same as Beginning's @|beg-require|.} diff --git a/collects/scribblings/htdp-langs/beginner.scrbl b/collects/scribblings/htdp-langs/beginner.scrbl index ff43a7f1ba..e1cd51717f 100644 --- a/collects/scribblings/htdp-langs/beginner.scrbl +++ b/collects/scribblings/htdp-langs/beginner.scrbl @@ -5,7 +5,7 @@ (for-label lang/htdp-beginner)) -@title[#:style 'toc]{Beginner Student} +@title[#:style 'toc]{Beginning Student} @declare-exporting[lang/htdp-beginner] diff --git a/collects/scribblings/htdp-langs/intermediate-lambda.scrbl b/collects/scribblings/htdp-langs/intermediate-lambda.scrbl index 3e61065ccc..5bf65b3068 100644 --- a/collects/scribblings/htdp-langs/intermediate-lambda.scrbl +++ b/collects/scribblings/htdp-langs/intermediate-lambda.scrbl @@ -100,7 +100,7 @@ and whose body is @scheme[expr].} @defform/none[(expr expr expr ...)]{ -Like a Beginner @seclink["beginner-call"]{function call}, except that +Like a Beginning @seclink["beginner-call"]{function call}, except that the function position can be an arbitrary expression---perhaps a @scheme[lambda] expression or a @scheme[_prim-op].} @@ -146,20 +146,20 @@ and @|intm-let*|.} @defidform[else] )]{ -The same as Beginner's @|beg-cond|.} +The same as Beginning's @|beg-cond|.} @defform[(if expr expr expr)]{ -The same as Beginner's @|beg-if|.} +The same as Beginning's @|beg-if|.} @deftogether[( @defform[(and expr expr expr ...)] @defform[(or expr expr expr ...)] )]{ -The same as Beginner's @|beg-and| and @|beg-or|.} +The same as Beginning's @|beg-and| and @|beg-or|.} @defform[(time expr)]{ @@ -177,4 +177,4 @@ Constants for the empty list, true, and false.} @defform[(require string)]{ -The same as Beginner's @|beg-require|.} +The same as Beginning's @|beg-require|.} diff --git a/collects/scribblings/htdp-langs/intermediate.scrbl b/collects/scribblings/htdp-langs/intermediate.scrbl index 33a2532404..053d5b96fe 100644 --- a/collects/scribblings/htdp-langs/intermediate.scrbl +++ b/collects/scribblings/htdp-langs/intermediate.scrbl @@ -74,11 +74,11 @@ (define id (lambda (id id ...) expr))] )]{ Besides working in @scheme[local], definition forms are -the same as Beginner's @|beg-define|.} +the same as Beginning's @|beg-define|.} @defidform[lambda]{ -As in Beginner, @scheme[lambda] keyword can only be used with +As in Beginning, @scheme[lambda] keyword can only be used with @scheme[define] in the alternative function-definition syntax.} @; ---------------------------------------------------------------------- @@ -87,7 +87,7 @@ As in Beginner, @scheme[lambda] keyword can only be used with @defform[(define-struct structid (fieldid ...))]{ -Besides working in @scheme[local], this form is the same as Beginner's +Besides working in @scheme[local], this form is the same as Beginning's @|beg-define-struct|.} @; ---------------------------------------------------------------------- @@ -141,7 +141,7 @@ Like @scheme[let], but each @scheme[id] can be used in any subsequent @defform/none[(id expr expr ...)]{ -A function call in Intermediate is the same as a Beginner +A function call in Intermediate is the same as a Beginning @seclink["beginner-call"]{function call}, except that it can also call @scheme[local]ly defined functions or functions passed as arguments. That is, @scheme[id] can be a function defined in @@ -196,19 +196,19 @@ the function's body.} @defidform[else] )]{ -The same as Beginner's @|beg-cond|.} +The same as Beginning's @|beg-cond|.} @defform[(if expr expr expr)]{ -The same as Beginner's @|beg-if|.} +The same as Beginning's @|beg-if|.} @deftogether[( @defform[(and expr expr expr ...)] @defform[(or expr expr expr ...)] )]{ -The same as Beginner's @|beg-and| and @|beg-or|.} +The same as Beginning's @|beg-and| and @|beg-or|.} @deftogether[( @defthing[empty empty?] @@ -220,4 +220,4 @@ Constants for the empty list, true, and false.} @defform[(require string)]{ -The same as Beginner's @|beg-require|.} +The same as Beginning's @|beg-require|.}