Skip to content

Commit 3288b99

Browse files
committed
fix typo #58 in using guide
1 parent ffab165 commit 3288b99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/Using.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ been compiled), variables in Interlisp are dynamically scoped. This
4747
means that variables are visible within the dynamic environment they
4848
are in. For example, let's say we create two functions `FUN1`
4949
and `FUN2`. If `FUN1` introduced a local variable and then
50-
called `FUN2`, then `FUN2} would have access to the variable
50+
called `FUN2`, then `FUN2` would have access to the variable
5151
since it is in the dynamic environment of being called by `FUN1`.
5252
In other words, the variable was in existence when `FUN2` was
5353
called. However, the Interlisp compiler "hides" variables unless
@@ -70,7 +70,7 @@ and a function named `ABC` that are unrelated.
7070
Interlisp shares the notion of `LAMBDA` expressions with Common Lisp,
7171
as a way of defining functions. Interlisp `LAMBDA` specifies a list
7272
of parameters; Common Lisp parameter lists can be decorated with
73-
`:OPTIONAL`, `:REST` and `:KEYWORD` parameters. Interlisp also
73+
`&OPTIONAL`, `&REST` and `&KEYWORD` parameters. Interlisp also
7474
adds the notion of an `NLAMBDA` function that doesn't evaluate
7575
its arguments -- arguments to
7676
`NLAMBDA` function are passed directly into a function without
@@ -131,4 +131,4 @@ Medley Interlisp also includes an online reference:
131131
_or_, at any prompt, the `man` command will look up an (Interlisp) symbol.
132132

133133
------------
134-
_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._
134+
_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._

0 commit comments

Comments
 (0)