From f0a65c899c7245f1dbaabad73330b4120ed6f2d4 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 12 Jul 2021 16:57:28 -0400 Subject: [PATCH] docs(fix): spelling mistake in recent commit --- docs/advanced/pycpp/utilities.rst | 2 +- include/pybind11/iostream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced/pycpp/utilities.rst b/docs/advanced/pycpp/utilities.rst index 8b8e5196a..30429e84d 100644 --- a/docs/advanced/pycpp/utilities.rst +++ b/docs/advanced/pycpp/utilities.rst @@ -51,7 +51,7 @@ redirects output to the corresponding Python streams: The implementation in ``pybind11/iostream.h`` is NOT thread safe. Multiple threads writing to a redirected ostream concurrently cause data races - and potentially buffer overflows. Therefore it is currrently a requirement + and potentially buffer overflows. Therefore it is currently a requirement that all (possibly) concurrent redirected ostream writes are protected by a mutex. #HelpAppreciated: Work on iostream.h thread safety. For more background see the discussions under diff --git a/include/pybind11/iostream.h b/include/pybind11/iostream.h index c98067ad8..e4d209585 100644 --- a/include/pybind11/iostream.h +++ b/include/pybind11/iostream.h @@ -8,7 +8,7 @@ WARNING: The implementation in this file is NOT thread safe. Multiple threads writing to a redirected ostream concurrently cause data races - and potentially buffer overflows. Therefore it is currrently a requirement + and potentially buffer overflows. Therefore it is currently a requirement that all (possibly) concurrent redirected ostream writes are protected by a mutex. #HelpAppreciated: Work on iostream.h thread safety.