[llvm] 691d436 - Fix typos in doc LangRef.rst

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 4 05:17:43 PDT 2020


Author: Yang Zhihui
Date: 2020-09-04T05:17:31-07:00
New Revision: 691d436685fa2394b088a9e4726c075027ac9c51

URL: https://github.com/llvm/llvm-project/commit/691d436685fa2394b088a9e4726c075027ac9c51
DIFF: https://github.com/llvm/llvm-project/commit/691d436685fa2394b088a9e4726c075027ac9c51.diff

LOG: Fix typos in doc LangRef.rst

Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D87077

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index ce791b3aa9d4..2bd7d09f698d 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -6885,7 +6885,7 @@ where the first ``param`` is the number of the parameter it describes,
 which can be accessed by the function. This range does not include accesses by
 function calls from ``calls`` list.
 
-where each ``Callee`` decribes how parameter is forwared into other
+where each ``Callee`` describes how parameter is forwarded into other
 functions and looks like:
 
 .. code-block:: text
@@ -15952,8 +15952,8 @@ Arguments:
 """"""""""
 
 The first argument ``%Ptr`` is a pointer type to the returned vector type, and
-correponds to the start address to load from. The second argument ``%Stride``
-is a postive, constant integer with ``%Stride >= <Rows>``. ``%Stride`` is used
+corresponds to the start address to load from. The second argument ``%Stride``
+is a positive, constant integer with ``%Stride >= <Rows>``. ``%Stride`` is used
 to compute the column memory addresses. I.e., for a column ``C``, its start
 memory addresses is calculated with ``%Ptr + C * %Stride``. The third Argument
 ``<IsVolatile>`` is a boolean value.  The fourth and fifth arguments,


        


More information about the llvm-commits mailing list