[llvm] [docs] Fix typo in Programmer's Manual BinaryOperator description (PR #160212)

Kian Kasad via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 22 15:58:27 PDT 2025


https://github.com/kdkasad created https://github.com/llvm/llvm-project/pull/160212

Fixes phrase "This subclasses represents..."

>From 56d5a75883f2bd6c7b028a59b3d5e0a95430f7cd Mon Sep 17 00:00:00 2001
From: Kian Kasad <kian at kasad.com>
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:



More information about the llvm-commits mailing list