[sanitizer] fix comment

llvm-svn: 199112
This commit is contained in:
Kostya Serebryany 2014-01-13 15:06:20 +00:00
parent b36da43dc3
commit e8699fcd8e
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ extern "C" {
// in a contiguous region of memory. The container owns the region of memory
// [beg, end); the memory [beg, mid) is used to store the current elements
// and the memory [mid, end) is reserved for future elements;
// end <= mid <= end. For example, in "std::vector<> v"
// beg <= mid <= end. For example, in "std::vector<> v"
// beg = &v[0];
// end = beg + v.capacity() * sizeof(v[0]);
// mid = beg + v.size() * sizeof(v[0]);