Update some comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52957 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/CXXFieldCollector.h b/lib/Sema/CXXFieldCollector.h
index 6857fef..44d4826 100644
--- a/lib/Sema/CXXFieldCollector.h
+++ b/lib/Sema/CXXFieldCollector.h
@@ -57,10 +57,10 @@
     ++FieldCount.back();
   }
 
-  /// getNumField - The number of fields added to the currently parsed class.
+  /// getCurNumField - The number of fields added to the currently parsed class.
   size_t getCurNumFields() const { return FieldCount.back(); }
 
-  /// getFields - Pointer to array of fields added to the currently parsed
+  /// getCurFields - Pointer to array of fields added to the currently parsed
   /// class.
   CXXFieldDecl **getCurFields() { return &*(Fields.end() - getCurNumFields()); }