From 1db5ad97f8cac446a2527edb54eb978a4cf93703 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 24 Aug 2011 06:48:12 -0400 Subject: [PATCH] Fix another bunch of "language" typos. --- collects/lazy/info.rkt | 2 +- collects/plai/scribblings/plai.scrbl | 2 +- collects/redex/examples/delim-cont/README.txt | 4 ++-- collects/redex/private/struct.rkt | 2 +- .../string-constants/private/russian-string-constants.rkt | 2 +- .../string-constants/private/ukrainian-string-constants.rkt | 2 +- collects/tests/drracket/teaching-lang-sharing-modules.rkt | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/collects/lazy/info.rkt b/collects/lazy/info.rkt index 48c3f462ac..5b7b05e976 100644 --- a/collects/lazy/info.rkt +++ b/collects/lazy/info.rkt @@ -4,7 +4,7 @@ ;; STC 2010-06-01 ;; Changing lazy to be a tools-based language so I can use -;; stepper-lanugage-interface to add a stepper button. This change is temporary +;; stepper-language-interface to add a stepper button. This change is temporary ;; until the stepper works with #lang languages. ;(require string-constants) diff --git a/collects/plai/scribblings/plai.scrbl b/collects/plai/scribblings/plai.scrbl index 64e0a39418..50de99885d 100644 --- a/collects/plai/scribblings/plai.scrbl +++ b/collects/plai/scribblings/plai.scrbl @@ -61,7 +61,7 @@ This package contains the following languages: @(define scheme-guide '(lib "scribblings/reference/reference.scrbl")) -@PLAI-LANG is derived from the @racketmodname[scheme] langauge. In addition, +@PLAI-LANG is derived from the @racketmodname[scheme] language. In addition, it includes the @racket[define-type] and @racket[type-case] forms and testing support. diff --git a/collects/redex/examples/delim-cont/README.txt b/collects/redex/examples/delim-cont/README.txt index ddd8c45792..1e33c27010 100644 --- a/collects/redex/examples/delim-cont/README.txt +++ b/collects/redex/examples/delim-cont/README.txt @@ -3,8 +3,8 @@ To run the tests using the model: 1. Open "test.rkt" in DrRacket - 2. Change DrRacket's current language to "Use the langauge declared - in the source" + 2. Change DrRacket's current language to "Use the language declared + in the source" 3. Click "Run" diff --git a/collects/redex/private/struct.rkt b/collects/redex/private/struct.rkt index e96d8da7c1..68ddd56220 100644 --- a/collects/redex/private/struct.rkt +++ b/collects/redex/private/struct.rkt @@ -18,7 +18,7 @@ (define-struct rule-pict (arrow lhs rhs label computed-label side-conditions/pattern-binds fresh-vars)) ;; type proc = (exp exp (any -> any) (listof any) -> (listof any))) -;; a proc is a `cached' version of a make-proc, specialized to a particular langugage +;; a proc is a `cached' version of a make-proc, specialized to a particular language ;; since that first application does all the work of compiling a pattern (wrt to a language), ;; we want to avoid doing it multiple times, so it is cached in a reduction-relation struct diff --git a/collects/string-constants/private/russian-string-constants.rkt b/collects/string-constants/private/russian-string-constants.rkt index 9a3db8f0b2..32c4067ee0 100644 --- a/collects/string-constants/private/russian-string-constants.rkt +++ b/collects/string-constants/private/russian-string-constants.rkt @@ -89,7 +89,7 @@ please adhere to these guidelines: |# (module russian-string-constants "string-constant-lang.rkt" - ;;; when translating this constant, substitute name of actual langauge for `English' + ;;; when translating this constant, substitute name of actual language for `English' (is-this-your-native-language "Русский - это Ваш родной язык?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/private/ukrainian-string-constants.rkt b/collects/string-constants/private/ukrainian-string-constants.rkt index f40decb209..c3bcef4cae 100644 --- a/collects/string-constants/private/ukrainian-string-constants.rkt +++ b/collects/string-constants/private/ukrainian-string-constants.rkt @@ -89,7 +89,7 @@ please adhere to these guidelines: |# (module ukrainian-string-constants "string-constant-lang.rkt" - ;;; when translating this constant, substitute name of actual langauge for `English' + ;;; when translating this constant, substitute name of actual language for `English' (is-this-your-native-language "Українська - це Ваша рідна мова?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/tests/drracket/teaching-lang-sharing-modules.rkt b/collects/tests/drracket/teaching-lang-sharing-modules.rkt index 1d6548ccdb..3486aa1ded 100644 --- a/collects/tests/drracket/teaching-lang-sharing-modules.rkt +++ b/collects/tests/drracket/teaching-lang-sharing-modules.rkt @@ -5,7 +5,7 @@ This test checks to see if the code that htdp-lang.rkt injects into the teaching languages relies only on modules that are -shared between drracket's and the teaching langauges's namespace. +shared between drracket's and the teaching languages's namespace. In practice when this test fails it means that some code in langs/htdp-lang.rkt has something like #'(f) for some function