From d2a405dabd8481062c298ff60ffebc925a4b91f6 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Fri, 14 Feb 2020 06:03:26 +0100 Subject: [PATCH] Clarify documentation in CompiledExpression --- pymbolic/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymbolic/compiler.py b/pymbolic/compiler.py index 96ff2c9..2f749e2 100644 --- a/pymbolic/compiler.py +++ b/pymbolic/compiler.py @@ -101,7 +101,7 @@ class CompiledExpression(object): :arg variables: The first arguments (as strings or :class:`pymbolic.primitives.Variable` instances) to be used for the compiled function. All variables used by the expression and not - present here are added in alphabetical order. + present here are added in lexicographic order. """ self._compile(expression, variables) -- GitLab