From: Jay Foad Date: Wed, 13 Apr 2011 12:50:47 +0000 (+0000) Subject: Fix typo in comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=715c80a00b965f19ca2c7dacbc2f809221cc2730;p=oota-llvm.git Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129436 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/ArrayRef.h b/include/llvm/ADT/ArrayRef.h index ebddb1287eb..97e42cb2660 100644 --- a/include/llvm/ADT/ArrayRef.h +++ b/include/llvm/ADT/ArrayRef.h @@ -22,8 +22,8 @@ namespace llvm { /// /// 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.