From 81bfdae82a9a225f2d5b33918d25e8e8a8a271ef Mon Sep 17 00:00:00 2001 From: Jacob Summers <5657503+JakeSummers@users.noreply.github.com> Date: Mon, 6 May 2024 09:49:28 -0400 Subject: [PATCH] Minor readme clarification (#86) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e365664..2780dde 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ with pipes() as (out, err): stdout = out.read() ``` -Capture stdout/stderr in StringIO: +Capture both stdout and stderr in a single StringIO object: ```python from io import StringIO