From 3f02f302561177cc767647f5bd48b106de36c25a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 21:58:34 +1100 Subject: [PATCH] docs: fix simple typo, recurssion -> recursion There is a small typo in xonsh/proc.py. Should read `recursion` rather than `recurssion`. --- xonsh/proc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonsh/proc.py b/xonsh/proc.py index d792506..98e21f6 100644 --- a/xonsh/proc.py +++ b/xonsh/proc.py @@ -1004,7 +1004,7 @@ def register(self, handle): that this method can be used in a with-statement. """ if handle is self: - # prevent weird recurssion errors + # prevent weird recursion errors return self self.registry[threading.get_ident()] = handle return self