From 2e0cb8226e9ea096a89d8822641002c399bfdada Mon Sep 17 00:00:00 2001 From: Carl Eastlund Date: Mon, 1 Feb 2010 01:41:51 +0000 Subject: [PATCH] Replaced every "langauge" (note swapped vowels) with "language". svn: r17918 --- collects/drscheme/private/drsig.ss | 4 ++-- collects/drscheme/private/module-language.ss | 2 +- collects/drscheme/tool-lib.ss | 2 +- collects/redex/private/reduction-semantics.ss | 4 ++-- collects/redex/redex.scrbl | 2 +- collects/scribble/text/output.ss | 2 +- collects/scribblings/drscheme/interface-essentials.scrbl | 2 +- collects/scribblings/drscheme/languages.scrbl | 2 +- collects/scribblings/tools/language.scrbl | 2 +- collects/string-constants/danish-string-constants.ss | 2 +- collects/string-constants/dutch-string-constants.ss | 2 +- collects/string-constants/english-string-constants.ss | 2 +- collects/string-constants/french-string-constants.ss | 2 +- collects/string-constants/japanese-string-constants.ss | 2 +- collects/string-constants/spanish-string-constants.ss | 2 +- collects/string-constants/string-constant.ss | 4 ++-- collects/tests/drscheme/language-test.ss | 2 +- 17 files changed, 20 insertions(+), 20 deletions(-) diff --git a/collects/drscheme/private/drsig.ss b/collects/drscheme/private/drsig.ss index 4645b8a393..3dbb60f8ce 100644 --- a/collects/drscheme/private/drsig.ss +++ b/collects/drscheme/private/drsig.ss @@ -86,14 +86,14 @@ module-language-name module-language-put-file-mixin)) -(define-signature drscheme:module-langauge-tools-cm^ +(define-signature drscheme:module-language-tools-cm^ (frame-mixin frame<%> tab-mixin tab<%> definitions-text-mixin definitions-text<%>)) -(define-signature drscheme:module-language-tools^ extends drscheme:module-langauge-tools-cm^ +(define-signature drscheme:module-language-tools^ extends drscheme:module-language-tools-cm^ ()) (define-signature drscheme:get-collection-cm^ ()) diff --git a/collects/drscheme/private/module-language.ss b/collects/drscheme/private/module-language.ss index 60383f5b64..690c85e3a0 100644 --- a/collects/drscheme/private/module-language.ss +++ b/collects/drscheme/private/module-language.ss @@ -53,7 +53,7 @@ (define default-full-trace? #t) (define default-auto-text "#lang scheme\n") - (define module-language-name "Determine langauge from source") + (define module-language-name "Determine language from source") ;; module-mixin : (implements drscheme:language:language<%>) ;; -> (implements drscheme:language:language<%>) diff --git a/collects/drscheme/tool-lib.ss b/collects/drscheme/tool-lib.ss index 20bbba2a76..25cd2ad39d 100644 --- a/collects/drscheme/tool-lib.ss +++ b/collects/drscheme/tool-lib.ss @@ -1167,7 +1167,7 @@ all of the names in the tools library, for use defining keybindings contract?) (s) @{Returns the contract for a given capability, which was specified - when @scheme[drscheme:langauge:register-capability] was called.}) + when @scheme[drscheme:language:register-capability] was called.}) ; diff --git a/collects/redex/private/reduction-semantics.ss b/collects/redex/private/reduction-semantics.ss index d9204af898..1316509c9f 100644 --- a/collects/redex/private/reduction-semantics.ss +++ b/collects/redex/private/reduction-semantics.ss @@ -1713,9 +1713,9 @@ [(_ name orig-lang (names rhs ...) ...) (begin (unless (identifier? (syntax name)) - (raise-syntax-error 'define-extended-langauge "expected an identifier" stx #'name)) + (raise-syntax-error 'define-extended-language "expected an identifier" stx #'name)) (unless (identifier? (syntax orig-lang)) - (raise-syntax-error 'define-extended-langauge "expected an identifier" stx #'orig-lang)) + (raise-syntax-error 'define-extended-language "expected an identifier" stx #'orig-lang)) (check-rhss-not-empty stx (cdddr (syntax->list stx))) (let ([old-names (language-id-nts #'orig-lang 'define-extended-language)]) (with-syntax ([((new-nt-names orig) ...) (append (pull-out-names 'define-language stx #'(names ...)) diff --git a/collects/redex/redex.scrbl b/collects/redex/redex.scrbl index 7fc37e9828..822c17f550 100644 --- a/collects/redex/redex.scrbl +++ b/collects/redex/redex.scrbl @@ -394,7 +394,7 @@ All of the exports in this section are provided both by all non-GUI portions of Redex) and also exported by @schememodname[redex] (which includes all of Redex). -Object langauge expressions in Redex are written using +Object language expressions in Redex are written using @scheme[term]. It is similar to Scheme's @scheme[quote] (in many cases it is identical) in that it constructs lists as the visible representation of terms. diff --git a/collects/scribble/text/output.ss b/collects/scribble/text/output.ss index 4c20ca1496..90f6eaa282 100644 --- a/collects/scribble/text/output.ss +++ b/collects/scribble/text/output.ss @@ -4,7 +4,7 @@ (provide output) -;; Outputs some value, for the preprocessor langauge. +;; Outputs some value, for the preprocessor language. ;; ;; Uses global state because `output' is wrapped around each expression in a ;; scribble/text file so this is much more convenient than wrapping the whole diff --git a/collects/scribblings/drscheme/interface-essentials.scrbl b/collects/scribblings/drscheme/interface-essentials.scrbl index fbedebd94d..a7839b6d4f 100644 --- a/collects/scribblings/drscheme/interface-essentials.scrbl +++ b/collects/scribblings/drscheme/interface-essentials.scrbl @@ -787,7 +787,7 @@ Each type has advantages and disadvantages: In general, DrScheme's @drlang{Module} language gives you the most options. Most other languages only allow one type of executable. The -teaching langauges create stand-alone executables in +teaching languages create stand-alone executables in distributions. The legacy languages create launchers. @bold{Tip:} Disable debugging in the language dialog before creating diff --git a/collects/scribblings/drscheme/languages.scrbl b/collects/scribblings/drscheme/languages.scrbl index 66c70eb339..c6f31cb277 100644 --- a/collects/scribblings/drscheme/languages.scrbl +++ b/collects/scribblings/drscheme/languages.scrbl @@ -26,7 +26,7 @@ Scheme module can be written as @scheme[(module ...)]. In any case, aside from comments, the @tech{definitions window} must contain exactly one module. -In the details pane of the module langauge, some of the +In the details pane of the module language, some of the configuration options for the Module language that correspond to using various libraries and thus can be used without DrScheme. Here's how, for the ones that are straightforward (the ones diff --git a/collects/scribblings/tools/language.scrbl b/collects/scribblings/tools/language.scrbl index 06a9c5a209..7588598fd1 100644 --- a/collects/scribblings/tools/language.scrbl +++ b/collects/scribblings/tools/language.scrbl @@ -711,7 +711,7 @@ expressions entered in the interactions window. It is also used in other contexts by tools to expand single expressions. See also -@method[drscheme:langauge:language<%> front-end/finished-complete-program]. +@method[drscheme:language:language<%> front-end/finished-complete-program]. } @defmethod[(get-comment-character) diff --git a/collects/string-constants/danish-string-constants.ss b/collects/string-constants/danish-string-constants.ss index 93d47591be..8b72e8670b 100644 --- a/collects/string-constants/danish-string-constants.ss +++ b/collects/string-constants/danish-string-constants.ss @@ -89,7 +89,7 @@ please adhere to these guidelines: |# (module danish-string-constants "string-constant-lang.ss" - ;;; 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 "Foretrækker du dansk?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/dutch-string-constants.ss b/collects/string-constants/dutch-string-constants.ss index 4bfdf1e82f..1ae3c69f26 100644 --- a/collects/string-constants/dutch-string-constants.ss +++ b/collects/string-constants/dutch-string-constants.ss @@ -2,7 +2,7 @@ ;;; -- Where are Undo, Redo, Select all, and friends from the right-click popup menu? - ;;; 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 "Is uw moedertaal Nederlands?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/english-string-constants.ss b/collects/string-constants/english-string-constants.ss index c99832e634..fbba384ba1 100644 --- a/collects/string-constants/english-string-constants.ss +++ b/collects/string-constants/english-string-constants.ss @@ -89,7 +89,7 @@ please adhere to these guidelines: |# (module english-string-constants "string-constant-lang.ss" - ;;; 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 "Is English Your Native Language?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/french-string-constants.ss b/collects/string-constants/french-string-constants.ss index 3a2ae31d86..a8fb9f6693 100644 --- a/collects/string-constants/french-string-constants.ss +++ b/collects/string-constants/french-string-constants.ss @@ -89,7 +89,7 @@ (module french-string-constants "string-constant-lang.ss" - ;;; when translating this constant, substitue name of actual langauge for `English' + ;;; when translating this constant, substitue name of actual language for `English' (is-this-your-native-language "Le Français est-il votre langue maternelle ?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/japanese-string-constants.ss b/collects/string-constants/japanese-string-constants.ss index d108d74999..a2a2585833 100644 --- a/collects/string-constants/japanese-string-constants.ss +++ b/collects/string-constants/japanese-string-constants.ss @@ -89,7 +89,7 @@ please adhere to these guidelines: |# (module japanese-string-constants "string-constant-lang.ss" - ;;; 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 "Is Japanese Your Native Language?") (are-you-sure-you-want-to-switch-languages diff --git a/collects/string-constants/spanish-string-constants.ss b/collects/string-constants/spanish-string-constants.ss index f194d57ff7..7bd67b0326 100644 --- a/collects/string-constants/spanish-string-constants.ss +++ b/collects/string-constants/spanish-string-constants.ss @@ -1,6 +1,6 @@ (module spanish-string-constants "string-constant-lang.ss" - ;;; when translating this constant, substitue name of actual langauge for `English' + ;;; when translating this constant, substitue name of actual language for `English' (is-this-your-native-language "¿Es español tu idioma materno?") diff --git a/collects/string-constants/string-constant.ss b/collects/string-constants/string-constant.ss index 4f317394ca..f61b3ff0a5 100644 --- a/collects/string-constants/string-constant.ss +++ b/collects/string-constants/string-constant.ss @@ -87,8 +87,8 @@ ;; isn't well-formed according to `read' you get all output ;; If the environment variable is set to a symbol (according to read) ;; you get that language. If it is set to a list of symbols - ;; (again, according to read) you get those langauges. - ;; if it is set to anything else, you get all langauges. + ;; (again, according to read) you get those languages. + ;; if it is set to anything else, you get all languages. (define (env-var-set? lang) (cond [(symbol? specific) (eq? lang specific)] diff --git a/collects/tests/drscheme/language-test.ss b/collects/tests/drscheme/language-test.ss index 6ac9d7e9b3..3f8abef864 100644 --- a/collects/tests/drscheme/language-test.ss +++ b/collects/tests/drscheme/language-test.ss @@ -1111,7 +1111,7 @@ the settings above should match r5rs ;; teaching-language-fraction-output -;; tests that the teaching langauges properly handle repeating decimals +;; tests that the teaching languages properly handle repeating decimals (define (teaching-language-fraction-output) (test-setting (lambda () (fw:test:set-radio-box! "Fraction Style" "Mixed fractions"))