r340743 - fix comment typo

Nico Weber via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 27 07:23:50 PDT 2018


Author: nico
Date: Mon Aug 27 07:23:50 2018
New Revision: 340743

URL: http://llvm.org/viewvc/llvm-project?rev=340743&view=rev
Log:
fix comment typo

Modified:
    cfe/trunk/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp?rev=340743&r1=340742&r2=340743&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp Mon Aug 27 07:23:50 2018
@@ -96,7 +96,7 @@ public:
 static bool isVoidPointer(QualType T);
 
 /// Dereferences \p V and returns the value and dynamic type of the pointee, as
-/// well as wether \p FR needs to be casted back to that type. If for whatever
+/// well as whether \p FR needs to be casted back to that type. If for whatever
 /// reason dereferencing fails, returns with None.
 static llvm::Optional<std::tuple<SVal, QualType, bool>>
 dereference(ProgramStateRef State, const FieldRegion *FR);




More information about the cfe-commits mailing list