From 4b1715c80b93a4c2b70b1954b1f8b10628397ca7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 21 Jul 2022 11:58:25 +0800 Subject: [PATCH] typo --- artiq/language/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/language/environment.py b/artiq/language/environment.py index 969664d15..e61bf228b 100644 --- a/artiq/language/environment.py +++ b/artiq/language/environment.py @@ -485,7 +485,7 @@ def is_experiment(o): def is_public_experiment(o): - """Checks if a Pyhton object is a top-level, + """Checks if a Python object is a top-level, non underscore-prefixed, experiment class. """ return is_experiment(o) and not o.__name__.startswith("_")