Skip to content

Commit 15555b9

Browse files
striezelKlemens Morgenstern
authored andcommitted
Fix some typos
1 parent 09555da commit 15555b9

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

doc/reference/environment.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
=== `environment`
55

6-
The `environment` header provides facilities to maniuplate the current environment and set it for new processes.
6+
The `environment` header provides facilities to manipulate the current environment and set it for new processes.
77

88

99
An environment is a a `range` of `T` fulfilling these requirements:
@@ -22,7 +22,7 @@ namespace environment
2222
// A char traits type that reflects the OS rules for string representing environment keys.
2323
/* Can be an alias of std::char_traits. May only be defined for `char` and `wchar_t`.
2424
*
25-
* Windows treats keys as case-insensitive yet perserving. The char traits are made to reflect
25+
* Windows treats keys as case-insensitive yet preserving. The char traits are made to reflect
2626
* that behaviour.
2727
*/
2828
template<typename Char>

doc/version2.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The major changes are
1313
* separate compilation
1414
* fd safe by default
1515
16-
Version 2 is now the defauled. In order to discourage usage of the deprecated v1, it's documentation has been removed.
16+
Version 2 is now the default. In order to discourage usage of the deprecated v1, it's documentation has been removed.
1717

1818
== Simplified Interface
1919

include/boost/process/v1/async.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ io_context ios;
114114
child c("ls", ios, on_exit=[](int exit, const std::error_code& ec_in){});
115115
116116
std::future<int> exit_code;
117-
chlid c2("ls", ios, on_exit=exit_code);
117+
child c2("ls", ios, on_exit=exit_code);
118118
119119
\endcode
120120

include/boost/process/v1/async_pipe.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace boost { namespace process { BOOST_PROCESS_V1_INLINE namespace v1 {
2626
#if defined(BOOST_PROCESS_DOXYGEN)
2727

2828

29-
/** Class implementing an asnychronous I/O-Object for use with boost.asio.
29+
/** Class implementing an asynchronous I/O-Object for use with boost.asio.
3030
* It is based on the corresponding I/O Object, that is either boost::asio::windows::stream_handle or
3131
* boost::asio::posix::stream_descriptor.
3232
*

include/boost/process/v1/child.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class child
128128
/** Same as valid, for convenience. */
129129
explicit operator bool() const;
130130

131-
/** Check if the the chlid process is in any process group. */
131+
/** Check if the the child process is in any process group. */
132132
bool in_group() const;
133133

134134
/** \overload bool in_group() const */

include/boost/process/v2/environment.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace environment
4040
/// A char traits type that reflects the OS rules for string representing environment keys.
4141
/** Can be an alias of std::char_traits. May only be defined for `char` and `wchar_t`.
4242
*
43-
* Windows treats keys as case-insensitive yet perserving. The char traits are made to reflect
43+
* Windows treats keys as case-insensitive yet preserving. The char traits are made to reflect
4444
* that behaviour.
4545
*/
4646
template<typename Char>

test/v2/target.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int main(int argc, char * argv[])
8585
{
8686
if (kind == CTRL_CLOSE_EVENT)
8787
{
88-
// windows doesn't like us doing antyhing else
88+
// windows doesn't like us doing anything else
8989
::exit(0);
9090
if (tim_p != nullptr)
9191
tim_p->cancel();

0 commit comments

Comments
 (0)