[Mlir-commits] [mlir] d14a029 - [mlir] tweak declarative assembly doc

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Oct 5 05:33:54 PDT 2022


Author: Oleksandr "Alex" Zinenko
Date: 2022-10-05T14:33:47+02:00
New Revision: d14a0292220e158dd55d670fd007c08e771c294e

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

LOG: [mlir] tweak declarative assembly doc

Change the formal argument of the `functional-type` directive from "results" to "outputs" to avoid confusion with the `results` directive.

Added: 
    

Modified: 
    mlir/docs/OpDefinitions.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/OpDefinitions.md b/mlir/docs/OpDefinitions.md
index 754fb641c9392..88dac15e2ba0f 100644
--- a/mlir/docs/OpDefinitions.md
+++ b/mlir/docs/OpDefinitions.md
@@ -651,11 +651,11 @@ The available directives are as follows:
     -   See the [Custom Directives](#custom-directives) section below for more
         details.
 
-*   `functional-type` ( inputs , results )
+*   `functional-type` ( inputs , outputs )
 
-    -   Formats the `inputs` and `results` arguments as a
+    -   Formats the `inputs` and `outputs` arguments as a
         [function type](Dialects/Builtin.md/#functiontype).
-    -   The constraints on `inputs` and `results` are the same as the `input` of
+    -   The constraints on `inputs` and `outputs` are the same as the `input` of
         the `type` directive.
 
 *   `oilist` ( \`keyword\` elements | \`otherKeyword\` elements ...)


        


More information about the Mlir-commits mailing list