summaryrefslogtreecommitdiff
path: root/boost/process/environment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/process/environment.hpp')
-rw-r--r--boost/process/environment.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/boost/process/environment.hpp b/boost/process/environment.hpp
index 1684798b87..d8b70fefb8 100644
--- a/boost/process/environment.hpp
+++ b/boost/process/environment.hpp
@@ -472,17 +472,17 @@ public:
///Assign a string to the value
void assign(const string_type &value);
- ///Assign a set of strings to the entry; they will be seperated by ';' or ':'.
+ ///Assign a set of strings to the entry; they will be separated by ';' or ':'.
void assign(const std::vector<string_type> &value);
- ///Append a string to the end of the entry, it will seperated by ';' or ':'.
+ ///Append a string to the end of the entry, it will separated by ';' or ':'.
void append(const string_type &value);
///Reset the value
void clear();
///Assign a string to the entry.
entry &operator=(const string_type & value);
- ///Assign a set of strings to the entry; they will be seperated by ';' or ':'.
+ ///Assign a set of strings to the entry; they will be separated by ';' or ':'.
entry &operator=(const std::vector<string_type> & value);
- ///Append a string to the end of the entry, it will seperated by ';' or ':'.
+ ///Append a string to the end of the entry, it will separated by ';' or ':'.
entry &operator+=(const string_type & value);
};
@@ -592,17 +592,17 @@ public:
///Assign a string to the value
void assign(const string_type &value);
- ///Assign a set of strings to the entry; they will be seperated by ';' or ':'.
+ ///Assign a set of strings to the entry; they will be separated by ';' or ':'.
void assign(const std::vector<string_type> &value);
- ///Append a string to the end of the entry, it will seperated by ';' or ':'.
+ ///Append a string to the end of the entry, it will separated by ';' or ':'.
void append(const string_type &value);
///Reset the value
void clear();
///Assign a string to the entry.
entry &operator=(const string_type & value);
- ///Assign a set of strings to the entry; they will be seperated by ';' or ':'.
+ ///Assign a set of strings to the entry; they will be separated by ';' or ':'.
entry &operator=(const std::vector<string_type> & value);
- ///Append a string to the end of the entry, it will seperated by ';' or ':'.
+ ///Append a string to the end of the entry, it will separated by ';' or ':'.
entry &operator+=(const string_type & value);
};