From 6284c9dcd339cee5ae8a23282527ad83f2df8886 Mon Sep 17 00:00:00 2001 From: Dominic Schlegel Date: Tue, 15 Oct 2019 17:06:27 +0200 Subject: [PATCH] Add missing :param statement in doc string Change-Id: I02401b3e0471a4e29b2292da842115946867cf8e --- mistral/utils/javascript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mistral/utils/javascript.py b/mistral/utils/javascript.py index fb65ceb92..a454ccfe1 100644 --- a/mistral/utils/javascript.py +++ b/mistral/utils/javascript.py @@ -36,7 +36,7 @@ class JSEvaluator(object): :param script: The text of JavaScript snippet that needs to be executed. - context: This object will be assigned to the $ javascript + :param context: This object will be assigned to the $ javascript variable. :return result of evaluated javascript code. :raise MistralException: if corresponding js library is not installed.