Fix a typo.
This commit is contained in:
parent
5a91f04f1a
commit
9d9fad6dc9
|
|
@ -33,17 +33,10 @@ from .utils.stack import stack_to_string
|
||||||
def joy(stack, expression, dictionary, viewer=None):
|
def joy(stack, expression, dictionary, viewer=None):
|
||||||
'''Evaluate a Joy expression on a stack.
|
'''Evaluate a Joy expression on a stack.
|
||||||
|
|
||||||
<<<<<<< working copy
|
|
||||||
This function iterates through a sequence of terms which are either
|
This function iterates through a sequence of terms which are either
|
||||||
literals (strings, numbers, sequences of terms) or function symbols.
|
literals (strings, numbers, sequences of terms) or function symbols.
|
||||||
Literals are put onto the stack and functions are looked up in the
|
Literals are put onto the stack and functions are looked up in the
|
||||||
dictionary and executed.
|
dictionary and executed.
|
||||||
=======
|
|
||||||
This function iterates through a sequence of terms which are either
|
|
||||||
literals (strings, numbers, sequences of terms) or function symbols.
|
|
||||||
Literals are put onto the stack and functions are looked up in the
|
|
||||||
disctionary and executed.
|
|
||||||
>>>>>>> merge rev
|
|
||||||
|
|
||||||
The viewer is a function that is called with the stack and expression
|
The viewer is a function that is called with the stack and expression
|
||||||
on every iteration, its return value is ignored.
|
on every iteration, its return value is ignored.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue