@@ -20,20 +20,20 @@ <h1>Escher faculty</h1>
2020< h2 > Index reflex</ h2 >
2121
2222< p > Every running Escher circuit program has been < a href ="program.html "> materialized relative to an index</ a > .
23- The index reflex, < code > escher .Index</ code > , is a noun reflex that emits the index relative to which
23+ The index reflex, < code > e .Index</ code > , is a noun reflex that emits the index relative to which
2424the current circuit has been materialized.
2525
2626< p > The following program, for instance, will print out the index used to materialize the invoking circuit program:
2727
2828< pre >
2929{
30- *Show = *escher .Index
30+ *Show = *e .Index
3131}
3232</ pre >
3333
3434< h2 > Materialize reflex</ h2 >
3535
36- < p > The materialize reflex, named < code > escher .Materialize</ code > ,
36+ < p > The materialize reflex, named < code > e .Materialize</ code > ,
3737materializes a program circuit relative to an index of faculties.
3838
3939< p > The reflex requires that two valves, < code > :View</ code > and < code > :Residue</ code > , be connected.
@@ -49,14 +49,14 @@ <h2>Materialize reflex</h2>
4949
5050< pre >
5151{
52- m *escher .Materialize
53- f *Fork
52+ m *e .Materialize
53+ f *e. Fork
5454
5555 m:View = f:
5656 f:Program = {
5757 *Show = "Hello from the child circuit program."
5858 }
59- f:Index = *escher .Index
59+ f:Index = *e .Index
6060 m:Residue = *Show
6161}
6262</ pre >
@@ -70,7 +70,7 @@ <h2>Materialize reflex</h2>
7070</ pre >
7171
7272< p > using the same index that was used to materialize the parent program, as acquired from
73- the < code > *escher .Index</ code > reflex in the parent program.
73+ the < code > *e .Index</ code > reflex in the parent program.
7474
7575
7676 </ div >
0 commit comments