[llvm-commits] [llvm] r161678 - /llvm/trunk/include/llvm-c/Core.h

Eli Bendersky eli.bendersky at intel.com
Fri Aug 10 11:30:44 PDT 2012


Author: eliben
Date: Fri Aug 10 13:30:44 2012
New Revision: 161678

URL: http://llvm.org/viewvc/llvm-project?rev=161678&view=rev
Log:
A couple of addition comment fixes

Modified:
    llvm/trunk/include/llvm-c/Core.h

Modified: llvm/trunk/include/llvm-c/Core.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Core.h?rev=161678&r1=161677&r2=161678&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/Core.h (original)
+++ llvm/trunk/include/llvm-c/Core.h Fri Aug 10 13:30:44 2012
@@ -986,7 +986,7 @@
  *
  * LLVMValueRef essentially represents llvm::Value. There is a rich
  * hierarchy of classes within this type. Depending on the instance
- * obtain, not all APIs are available.
+ * obtained, not all APIs are available.
  *
  * Callers can determine the type of a LLVMValueRef by calling the
  * LLVMIsA* family of functions (e.g. LLVMIsAArgument()). These
@@ -1162,7 +1162,7 @@
  *
  * Uses are obtained in an iterator fashion. First, call this function
  * to obtain a reference to the first use. Then, call LLVMGetNextUse()
- * on that instance and all subsequently obtained instances untl
+ * on that instance and all subsequently obtained instances until
  * LLVMGetNextUse() returns NULL.
  *
  * @see llvm::Value::use_begin()





More information about the llvm-commits mailing list