summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-02-10 05:56:07 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-02-10 05:56:07 +0100
commitc77bb6f013d79bda17520e08fb48549737e70383 (patch)
treedbc66722327205a845df69511b4fd26dd27edde0 /main.cpp
parent3e63e8fab5b19af84b98a6f6f420f83d98068e96 (diff)
Typo in comment
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 6bdb8cf..4752d6c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -168,7 +168,7 @@ std::string ReplaceButKeepSigns(
}
else
{
- // No: Use the last sign seen, or the sign of the following char (the following char within the same word-boundry) (Important for replacing vocals within a word)
+ // No: Use the last sign seen, or the sign of the following char (the following char within the same word-boundary) (Important for replacing vocals within a word)
const char charSignToUse = doHaveFollowingChar ? followingCharsSign : lastCharCharSign;
ss << CopySign(charSignToUse, cs);
}