Fix some comments.

llvm-svn: 77531
This commit is contained in:
Argyrios Kyrtzidis 2009-07-29 23:39:25 +00:00
parent 82150b38d2
commit f11952052c
3 changed files with 3 additions and 4 deletions

View File

@ -26,8 +26,7 @@ namespace idx {
/// \brief Maps NamedDecls with the ASTLocations that reference them.
///
/// References are mapped and retrieved using the primary decls
/// (see Decl::getPrimaryDecl()).
/// References are mapped and retrieved using the canonical decls.
class DeclReferenceMap {
public:
explicit DeclReferenceMap(ASTContext &Ctx);

View File

@ -61,7 +61,7 @@ public:
std::string getPrintableName() const;
/// \brief Get an Entity associated with the given Decl.
/// \returns Null if an Entity cannot refer to this Decl.
/// \returns invalid Entity if an Entity cannot refer to this Decl.
static Entity get(Decl *D, Program &Prog);
/// \brief true if the Entity is not visible outside the trasnlation unit.

View File

@ -20,7 +20,7 @@ namespace clang {
namespace idx {
class EntityHandler;
/// idx::Program is the top level object that owns and maintains information
/// \brief Top level object that owns and maintains information
/// that is common across translation units.
class Program {
void *Impl;