fix typo: Beginner -> Beginning
svn: r8198
This commit is contained in:
parent
13a92b3a3c
commit
17c6b00f44
|
@ -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|.}
|
||||
|
|
|
@ -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|.}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
(for-label lang/htdp-beginner))
|
||||
|
||||
|
||||
@title[#:style 'toc]{Beginner Student}
|
||||
@title[#:style 'toc]{Beginning Student}
|
||||
|
||||
@declare-exporting[lang/htdp-beginner]
|
||||
|
||||
|
|
|
@ -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|.}
|
||||
|
|
|
@ -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|.}
|
||||
|
|
Loading…
Reference in New Issue
Block a user