git » jacl.git » commit 64aa5e1

Update RUN.md

author Alan Dipert
2020-04-17 16:39:01 UTC
committer Alan Dipert
2020-04-17 16:39:01 UTC
parent 14489154d0817e49d45ccd5ebabdcbbb498885ea

Update RUN.md

RUN.md +3 -3

diff --git a/RUN.md b/RUN.md
index 206cf36..5b4ed5d 100644
--- a/RUN.md
+++ b/RUN.md
@@ -9,18 +9,18 @@ This document describes:
 
 # Files of Interest
 
-* `index.html` is Web page that includes the JACL runtime, compiler,
+* `jacl.html` is Web page that includes the JACL runtime, compiler,
   and test suite. Currently, JACL development is performed mostly by
   making changes and reloading this file in a Web browser to see if
   anything breaks.
 * `jacl.js` contains the JACL runtime, compiler, and REPL
   machinery. `jacl.js` will also fetch, compile, and evaluate any
   `<script type='application/lisp' src=... />` tags found in `<head>`
-  in their order of appearance. Lisp script loading is why `index.html`
+  in their order of appearance. Lisp script loading is why `jacl.html`
   must be served from a Web browser and not simply from a `file://`
   URL. JACL uses Ajax to fetch Lisp scripts.
 * `boot.lisp` is where the `COMMON-LISP` package is populated from. It
-  is evaluated by `jacl.js` when `index.html` loads.
+  is evaluated by `jacl.js` when `jacl.html` loads.
 * `jacl-tests.lisp` contains Lisp unit tests and is evaluated after
   `boot.lisp`.
 * `repl/jacl-client.R` is a JACL REPL client written in R. It is