[llvm-commits] [llvm] r129436 - /llvm/trunk/include/llvm/ADT/ArrayRef.h

Jay Foad jay.foad at gmail.com
Wed Apr 13 05:50:47 PDT 2011


Author: foad
Date: Wed Apr 13 07:50:47 2011
New Revision: 129436

URL: http://llvm.org/viewvc/llvm-project?rev=129436&view=rev
Log:
Fix typo in comment.

Modified:
    llvm/trunk/include/llvm/ADT/ArrayRef.h

Modified: llvm/trunk/include/llvm/ADT/ArrayRef.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/ArrayRef.h?rev=129436&r1=129435&r2=129436&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/ArrayRef.h (original)
+++ llvm/trunk/include/llvm/ADT/ArrayRef.h Wed Apr 13 07:50:47 2011
@@ -22,8 +22,8 @@
   ///
   /// This class does not own the underlying data, it is expected to be used in
   /// situations where the data resides in some other buffer, whose lifetime
-  /// extends past that of the StringRef. For this reason, it is not in general
-  /// safe to store a ArrayRef.
+  /// extends past that of the ArrayRef. For this reason, it is not in general
+  /// safe to store an ArrayRef.
   ///
   /// This is intended to be trivially copyable, so it should be passed by
   /// value.





More information about the llvm-commits mailing list