]> granicus.if.org Git - clang/commitdiff
[analyzer] More fixups/rewording based on Jordan's feedback.
authorAnna Zaks <ganna@apple.com>
Fri, 24 Aug 2012 21:07:45 +0000 (21:07 +0000)
committerAnna Zaks <ganna@apple.com>
Fri, 24 Aug 2012 21:07:45 +0000 (21:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162597 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h

index 9755c123a25dbd7d7db997c276f8c0cb268e4281..5ac97dbc31452109efba16cca6b165415cc674cc 100644 (file)
@@ -33,8 +33,8 @@ public:
   /// \brief Returns the currently inferred upper bound on the runtime type.
   QualType getType() const { return T; }
 
-  /// \brief Returns false if the type T is the only type in the lattice
-  /// (the type information is precise), true otherwise.
+  /// \brief Returns false if the type information is precise (the type T is
+  /// the only type in the lattice), true otherwise.
   bool canBeASubClass() const { return CanBeASubClass; }
 
   void Profile(llvm::FoldingSetNodeID &ID) const {
index 2263eca328bb2777c39c2a1abc720fc6297f0658..264c6106db5313d29e3c460b928573d6e8f07da5 100644 (file)
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This file defines the state of the program along the analyzes path.
+// This file defines the state of the program along the analysisa path.
 //
 //===----------------------------------------------------------------------===//