From 2ae1384fbaba3de82412284827d4ccab6a1ad472 Mon Sep 17 00:00:00 2001 From: adam j hartz Date: Sat, 12 Mar 2016 19:13:54 -0500 Subject: [PATCH] little docstring change --- xonsh/built_ins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonsh/built_ins.py b/xonsh/built_ins.py index 4b2eecf64..99ae9d267 100644 --- a/xonsh/built_ins.py +++ b/xonsh/built_ins.py @@ -710,7 +710,7 @@ def subproc_captured_object(*cmds): def subproc_captured_hiddenobject(*cmds): """ Runs a subprocess, capturing the output. Returns an instance of - ``COmpletedCOmmand`` representing the completed command. + ``HiddenCompletedCommand`` representing the completed command. """ return run_subproc(cmds, captured='hiddenobject')