From 56d5a75883f2bd6c7b028a59b3d5e0a95430f7cd Mon Sep 17 00:00:00 2001 From: Kian Kasad Date: Mon, 22 Sep 2025 15:55:51 -0700 Subject: [PATCH] [docs] Fix typo in Programmer's Manual BinaryOperator description Fixes phrase "This subclasses represents..." --- llvm/docs/ProgrammersManual.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 602922fcb3b9c..f2b31211cf0dc 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -3832,7 +3832,7 @@ Important Subclasses of the ``Instruction`` class * ``BinaryOperator`` - This subclasses represents all two operand instructions whose operands must be + This subclass represents all two operand instructions whose operands must be the same type, except for the comparison instructions. .. _CastInst: