Skip to content

Commit f0a65c8

Browse files
committed
docs(fix): spelling mistake in recent commit
1 parent 7472d37 commit f0a65c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/advanced/pycpp/utilities.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ redirects output to the corresponding Python streams:
5151

5252
The implementation in ``pybind11/iostream.h`` is NOT thread safe. Multiple
5353
threads writing to a redirected ostream concurrently cause data races
54-
and potentially buffer overflows. Therefore it is currrently a requirement
54+
and potentially buffer overflows. Therefore it is currently a requirement
5555
that all (possibly) concurrent redirected ostream writes are protected by
5656
a mutex. #HelpAppreciated: Work on iostream.h thread safety. For more
5757
background see the discussions under

include/pybind11/iostream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
WARNING: The implementation in this file is NOT thread safe. Multiple
1010
threads writing to a redirected ostream concurrently cause data races
11-
and potentially buffer overflows. Therefore it is currrently a requirement
11+
and potentially buffer overflows. Therefore it is currently a requirement
1212
that all (possibly) concurrent redirected ostream writes are protected by
1313
a mutex.
1414
#HelpAppreciated: Work on iostream.h thread safety.

0 commit comments

Comments
 (0)