spelling: subject

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-05-05 21:33:34 -04:00
parent c654415e74
commit 8414713ad8
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ Convert each character in \c subject to uppercase
*/
void uppercase(std::string& subject);
//! Remove all specific char in suject
//! Remove all specific char in subject
/*!
Remove all specific \c c in \c suject
Remove all specific \c c in \c subject
*/
void removeChar(std::string& subject, const char c);