Skip to content

Commit 51328b7

Browse files
author
sp
authored
[NFC] Fix spelling of "definitely". (#104455)
This corrects the misspelling of "definitely" as "definately". No functional changes.
1 parent e63b7ba commit 51328b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/StaticAnalyzer/Checkers/StringChecker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ bool StringChecker::isCharToStringCtor(const CallEvent &Call,
4848

4949
// Verify that the parameters have the expected types:
5050
// - arg 1: `const CharT *`
51-
// - arg 2: some allocator - which is definately not `size_t`.
51+
// - arg 2: some allocator - which is definitely not `size_t`.
5252
const QualType Arg1Ty = Call.getArgExpr(0)->getType().getCanonicalType();
5353
const QualType Arg2Ty = Call.getArgExpr(1)->getType().getCanonicalType();
5454

0 commit comments

Comments
 (0)