@@ -54,7 +54,7 @@ namespace boost { namespace property_tree { namespace ini_parser
5454 };
5555
5656 /* *
57- * Read INI from a the given stream and translate it to a property tree.
57+ * Read INI from the given stream and translate it to a property tree.
5858 * @note Clears existing contents of property tree. In case of error
5959 * the property tree is not modified.
6060 * @throw ini_parser_error If a format violation is found.
@@ -146,9 +146,9 @@ namespace boost { namespace property_tree { namespace ini_parser
146146 }
147147
148148 /* *
149- * Read INI from a the given file and translate it to a property tree.
149+ * Read INI from the given file and translate it to a property tree.
150150 * @note Clears existing contents of property tree. In case of error the
151- * property tree unmodified .
151+ * property tree is not modified .
152152 * @throw ini_parser_error In case of error deserializing the property tree.
153153 * @param filename Name of file from which to read in the property tree.
154154 * @param[out] pt The property tree to populate.
@@ -250,7 +250,7 @@ namespace boost { namespace property_tree { namespace ini_parser
250250 }
251251
252252 /* *
253- * Translates the property tree to INI and writes it the given output
253+ * Translates the property tree to INI and writes it to the given output
254254 * stream.
255255 * @pre @e pt cannot have data in its root.
256256 * @pre @e pt cannot have keys both data and children.
@@ -260,7 +260,7 @@ namespace boost { namespace property_tree { namespace ini_parser
260260 * INI or writing to the output stream.
261261 * @param stream The stream to which to write the INI representation of the
262262 * property tree.
263- * @param pt The property tree to tranlsate to INI and output.
263+ * @param pt The property tree to translate to INI and output.
264264 * @param flags The flags to use when writing the INI file.
265265 * No flags are currently supported.
266266 */
@@ -284,7 +284,7 @@ namespace boost { namespace property_tree { namespace ini_parser
284284 }
285285
286286 /* *
287- * Translates the property tree to INI and writes it the given file.
287+ * Translates the property tree to INI and writes it to the given file.
288288 * @pre @e pt cannot have data in its root.
289289 * @pre @e pt cannot have keys both data and children.
290290 * @pre @e pt cannot be deeper than two levels.
@@ -293,7 +293,7 @@ namespace boost { namespace property_tree { namespace ini_parser
293293 * to INI or writing to the file.
294294 * @param filename The name of the file to which to write the INI
295295 * representation of the property tree.
296- * @param pt The property tree to tranlsate to INI and output.
296+ * @param pt The property tree to translate to INI and output.
297297 * @param flags The flags to use when writing the INI file.
298298 * The following flags are supported:
299299 * @li @c skip_ini_validity_check -- Skip check if ptree is a valid ini. The
0 commit comments