[llvm] [llvm][stlextras] Delete repetition of are (PR #101977)
Andrey Timonin via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 5 06:28:15 PDT 2024
https://github.com/EtoAndruwa created https://github.com/llvm/llvm-project/pull/101977
None
>From 2db75e78871befb8f409ad89f9af25f8bbc29176 Mon Sep 17 00:00:00 2001
From: EtoAndruwa <timonina1909 at gmail.com>
Date: Mon, 5 Aug 2024 16:27:12 +0300
Subject: [PATCH] [llvm][stlextras] Delete repetition of are
---
llvm/include/llvm/ADT/STLExtras.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/include/llvm/ADT/STLExtras.h b/llvm/include/llvm/ADT/STLExtras.h
index 8f988d01cb2a6..3f5ea3a5275f3 100644
--- a/llvm/include/llvm/ADT/STLExtras.h
+++ b/llvm/include/llvm/ADT/STLExtras.h
@@ -2366,7 +2366,7 @@ class index_range {
detail::index_iterator end() const { return {End}; }
};
-/// Given two or more input ranges, returns a new range whose values are are
+/// Given two or more input ranges, returns a new range whose values are
/// tuples (A, B, C, ...), such that A is the 0-based index of the item in the
/// sequence, and B, C, ..., are the values from the original input ranges. All
/// input ranges are required to have equal lengths. Note that the returned
More information about the llvm-commits
mailing list