Biding -> Binding.

Closes PR13992.
This commit is contained in:
Vincent St-Amour 2013-09-03 11:13:12 -04:00
parent cbd29ca82f
commit 4453a4318c
5 changed files with 5 additions and 5 deletions

View File

@ -171,7 +171,7 @@
Version 5.2
------------------------------
. changed three menu keybidings:
. changed three menu keybindings:
"New Tab" is now <menukey>-t
"Run" is now <menukey>-r
"Replace" is now <menukey>-shift-f

View File

@ -34,7 +34,7 @@ the expression. For example, a representation of the expression
content, a syntax object associates source-location and
lexical-binding information with each part of the form. The
source-location information is used when reporting syntax errors (for
example), and the lexical-biding information allows the macro system
example), and the lexical-binding information allows the macro system
to maintain lexical scope. To accommodate this extra information, the
represention of the expression @racket[(+ 1 2)] is not merely
@racket['(+ 1 2)], but a packaging of @racket['(+ 1 2)] into a syntax

View File

@ -32,7 +32,7 @@
;; because no one uses the same name for different-phase exported
;; bindings.
;;
;; Formerly, we assumed that bidings are defined as originating from some
;; Formerly, we assumed that bindings are defined as originating from some
;; module at phase 0. [Maybe it's defined at phase 1 and re-exported
;; later for phase 0 (after a require-for-template), in which case the
;; re-exporting module is the one we find.] That assumption has been

View File

@ -2,7 +2,7 @@
(exn-pred 2)
#lang typed/racket
;; make sure letrec takes into account that some bidings may be undefined
;; make sure letrec takes into account that some bindings may be undefined
(+ (letrec: ([x : Float x]) x) 1) ; PR 11511

View File

@ -1,6 +1,6 @@
#lang typed/racket
;; make sure letrec takes into account that some bidings may be undefined
;; make sure letrec takes into account that some bindings may be undefined
(letrec: ([x : Number 3])
x)