From 3288b994b5ec330764c94fd5f0dde6cc0337bfc4 Mon Sep 17 00:00:00 2001 From: Larry Masinter Date: Sat, 21 Jan 2023 08:13:42 -0800 Subject: [PATCH] fix typo #58 in using guide --- content/en/docs/Using.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/Using.md b/content/en/docs/Using.md index 2d5955e0c..908d8f80e 100644 --- a/content/en/docs/Using.md +++ b/content/en/docs/Using.md @@ -47,7 +47,7 @@ been compiled), variables in Interlisp are dynamically scoped. This means that variables are visible within the dynamic environment they are in. For example, let's say we create two functions `FUN1` and `FUN2`. If `FUN1` introduced a local variable and then -called `FUN2`, then `FUN2} would have access to the variable +called `FUN2`, then `FUN2` would have access to the variable since it is in the dynamic environment of being called by `FUN1`. In other words, the variable was in existence when `FUN2` was called. However, the Interlisp compiler "hides" variables unless @@ -70,7 +70,7 @@ and a function named `ABC` that are unrelated. Interlisp shares the notion of `LAMBDA` expressions with Common Lisp, as a way of defining functions. Interlisp `LAMBDA` specifies a list of parameters; Common Lisp parameter lists can be decorated with -`:OPTIONAL`, `:REST` and `:KEYWORD` parameters. Interlisp also +`&OPTIONAL`, `&REST` and `&KEYWORD` parameters. Interlisp also adds the notion of an `NLAMBDA` function that doesn't evaluate its arguments -- arguments to `NLAMBDA` function are passed directly into a function without @@ -131,4 +131,4 @@ Medley Interlisp also includes an online reference: _or_, at any prompt, the `man` command will look up an (Interlisp) symbol. ------------ -_Many thanks to [Blake McBride](https://github.com/blakemcbride) and his [Medley Intro](https://github.com/blakemcbride/medley-intro) from which this was initially taken._ \ No newline at end of file +_Many thanks to [Blake McBride](https://github.com/blakemcbride) and his [Medley Intro](https://github.com/blakemcbride/medley-intro) from which this was initially taken._