Skip to content

Commit 244cadb

Browse files
committed
Fix a few typos in Demo_mode.md
1 parent 5b9d524 commit 244cadb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Demo_mode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Sample start scripts can be found in the Interlisp/Online Github repo in the sta
2929

3030
Most demos will require Lisp (or other) files that are not included in the standard Online Medley image. One very handy function to be used in start scripts for these demos is ```(ShellWget URL OUTFILE)```. This function will download (using wget) the file specified by URL and store it in the versioned Online Medley file system under the name OUTFILE. OUTFILE can then be LOADed by the start script.
3131

32-
Below is the start script for a demo of Pamoroso's INSPHEX utility The start script defines and then runs a function called START-INSPHEX. The START-INPHEX function in turn uses ShellWget to download the source code to INSPHEX from Github, compiles it, loads the compiled file and then uses ADD.PROCESS to run the main HEXDUMP function. There is some additional complication in the call to ADD.PROCESS to ensure that packages are handled correctly. But most existing Interlisp demos will not need this complexity since they don't use packages.
32+
Below is the start script for a demo of Pamoroso's INSPHEX utility. The start script defines and then runs a function called START-INSPHEX. The START-INPHEX function in turn uses ShellWget to download the source code to INSPHEX from Github, compiles it, loads the compiled file and then uses ADD.PROCESS to run the main HEXDUMP function. There is some additional complication in the call to ADD.PROCESS to ensure that packages are handled correctly. But most existing Interlisp demos will not need this complexity since they don't use packages.
3333

3434
```
3535
(DEFINE-FILE-INFO ^^PACKAGE "INTERLISP" ^^READTABLE "INTERLISP" ^^BASE 10)
@@ -43,7 +43,7 @@ Below is the start script for a demo of Pamoroso's INSPHEX utility The start sc
4343
(DEFINEQ
4444
4545
(START-INSPHEX
46-
[LAMBDA NIL
46+
[LAMBDA NIL
4747
(LET* ((INSPHEX.FILE (OUTFILEP "{CORE}INSPHEX"))
4848
INSPHEX.DFASL)
4949
(ShellWget "https://raw.githubusercontent.com/pamoroso/insphex/refs/heads/main/INSPHEX"
@@ -70,5 +70,5 @@ Additionally, if a ```start=<encoded start-script URL>``` query parameter is inc
7070

7171
## Synonyms for *https::online.interlisp.org/demo*
7272

73-
For legacy reasons, ```https:://online.interlisp.org/demo/guest``` and ```https:://online.interlisp.org/guest``` are synonyms for ```https::online.interlisp.org/demo```.
73+
For legacy reasons, ```https://online.interlisp.org/demo/guest``` and ```https://online.interlisp.org/guest``` are synonyms for ```https://online.interlisp.org/demo```.
7474

0 commit comments

Comments
 (0)