summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorFabianWolff <fabi.wolff@arcor.de>2020-09-01 05:20:57 +0200
committerGitHub <noreply@github.com>2020-08-31 20:20:57 -0700
commitfa05eb5599e2ac0b2d4c1e0e943fee6353b52430 (patch)
treef3c9cbb78e7e80657e0a0ebcd5f438842d05a854 /src/util
parent09b3b246ad0328a163b0e3825531ccf82ea4013d (diff)
Fix spelling errors (#4977)
Signed-off-by: Fabian Wolff <fabi.wolff@arcor.de>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/string.cpp6
-rw-r--r--src/util/string.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/util/string.cpp b/src/util/string.cpp
index 44c4d3e4b..a1a40df8a 100644
--- a/src/util/string.cpp
+++ b/src/util/string.cpp
@@ -131,7 +131,7 @@ std::vector<unsigned> String::toInternal(const std::string& s,
++i;
// are we an escape sequence?
bool isEscapeSequence = true;
- // the string corresponding to the hexidecimal code point
+ // the string corresponding to the hexadecimal code point
std::stringstream hexString;
// is the slash followed by a 'u'? Could be last character.
if (i >= s.size() || s[i] != 'u')
@@ -195,7 +195,7 @@ std::vector<unsigned> String::toInternal(const std::string& s,
}
if (!isEnd)
{
- // if we were interupted before ending, then this is not a valid
+ // if we were interrupted before ending, then this is not a valid
// escape sequence
isEscapeSequence = false;
}
@@ -210,7 +210,7 @@ std::vector<unsigned> String::toInternal(const std::string& s,
if (val > num_codes())
{
// Failed due to being out of range. This can happen for strings of
- // the form \ u { d_4 d_3 d_2 d_1 d_0 } where d_4 is a hexidecimal not
+ // the form \ u { d_4 d_3 d_2 d_1 d_0 } where d_4 is a hexadecimal not
// in the range [0-2].
isEscapeSequence = false;
}
diff --git a/src/util/string.h b/src/util/string.h
index ca458232f..fb4a1208c 100644
--- a/src/util/string.h
+++ b/src/util/string.h
@@ -58,7 +58,7 @@ class CVC4_PUBLIC String {
* \u{d_2 d_1 d_0}
* \u{d_3 d_2 d_1 d_0}
* \u{d_4 d_3 d_2 d_1 d_0}
- * where d_0 ... d_4 are hexidecimal digits, to the appropriate character.
+ * where d_0 ... d_4 are hexadecimal digits, to the appropriate character.
*
* If useEscSequences is false, then the characters of the constructed
* CVC4::String correspond one-to-one with the input string.
@@ -213,7 +213,7 @@ class CVC4_PUBLIC String {
* This is true for code points between 48 ('0') and 57 ('9').
*/
static bool isDigit(unsigned character);
- /** is the unsigned a hexidecimal digit?
+ /** is the unsigned a hexadecimal digit?
*
* This is true for code points between 48 ('0') and 57 ('9'), code points
* between 65 ('A') and 70 ('F) and code points between 97 ('a') and 102 ('f).
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback