Skip to content

Commit 147890e

Browse files
committed
Fix typo
1 parent ec6b5d6 commit 147890e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Only tested on Linux, and it only supports x86\_64.
2222

2323
Normalizing a term in the λ-calculus means applying the β-reduction rule until
2424
it can't be simplified any more. While it's usually described using syntactic
25-
substitution, the fastest algorithm in practice is to run it like a regular
26-
functional programming language, with a catch: we need to run programs with free
27-
variables in them, requiring some special runtime support and some objects with
28-
free variables in them.
25+
substitution, the fastest algorithm in practice (normalization by evaluation)
26+
involves running it like a regular functional programming language, with a
27+
catch: we need to run programs with free variables in them, requiring some
28+
special runtime support.
2929

3030
There are, of course, many ways to run a regular functional programming
3131
language: eager vs lazy evaluation, interpreted vs bytecode interpreted vs

0 commit comments

Comments
 (0)