From 7017f6b6d1a726b8d7f11fdf894d57dc2286fb21 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Mon, 23 Nov 2020 08:44:33 -0800 Subject: [PATCH] Fix a typo. --- joy/joy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joy/joy.py b/joy/joy.py index ceb90be..db87483 100644 --- a/joy/joy.py +++ b/joy/joy.py @@ -40,7 +40,7 @@ def joy(stack, expression, dictionary, viewer=None): 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. + dictionary and executed. The viewer is a function that is called with the stack and expression on every iteration, its return value is ignored.