Fix some spelling mistakes.

Fixes BZ#374719
Patch by: klemens <ka7@la-evento.com>


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16336
This commit is contained in:
Ivo Raisr
2017-05-05 22:13:20 +00:00
parent 8531fa9c3c
commit d8f648486e
85 changed files with 132 additions and 131 deletions

View File

@@ -7,7 +7,7 @@
* - whether or not the smart pointer objects are shared over threads.
* - whether or not the smart pointer object itself is thread-safe.
*
* Most smart pointer implemenations are not thread-safe
* Most smart pointer implementations are not thread-safe
* (e.g. boost::shared_ptr<>, tr1::shared_ptr<> and the smart_ptr<>
* implementation below). This means that it is not safe to modify a shared
* pointer object that is shared over threads without proper synchronization.