From 9ccb46ed7f051aa8502225599a618cf979fd0666 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 11 Aug 2017 22:07:45 +0200 Subject: [PATCH] spelling --- src/xbt/xbt_str.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xbt/xbt_str.cpp b/src/xbt/xbt_str.cpp index ac5bc37168..bead714bd1 100644 --- a/src/xbt/xbt_str.cpp +++ b/src/xbt/xbt_str.cpp @@ -56,7 +56,7 @@ void xbt_str_rtrim(char *s, const char *char_list) /** @brief Strip whitespace (or other characters) from the beginning of a string. * - * Strips the whitespaces from the begining of s. + * Strips the whitespaces from the beginning of s. * By default (when char_list=nullptr), these characters get stripped: * * - " " (ASCII 32 (0x20)) space. @@ -94,7 +94,7 @@ void xbt_str_ltrim(char *s, const char *char_list) memmove(s, cur, strlen(cur) + 1); } -/** @brief Strip whitespace (or other characters) from the end and the begining of a string. +/** @brief Strip whitespace (or other characters) from the end and the beginning of a string. * * Strips the whitespaces from both the beginning and the end of s. * By default (when char_list=nullptr), these characters get stripped: @@ -123,7 +123,7 @@ void xbt_str_trim(char *s, const char *char_list) * @param str the string to modify * @param from char to search * @param to char to put instead - * @param occurence number of changes to do (=0 means all) + * @param occurrence number of changes to do (=0 means all) */ void xbt_str_subst(char *str, char from, char to, int occurence) { -- 2.20.1