summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorergawy <kareem.ergawy@gmail.com>2020-12-01 20:06:33 +0000
committerMehdi Amini <joker.eph@gmail.com>2020-12-01 20:06:41 +0000
commit2074fec5beb4eca9d438acd3b37c2c6d20b891b1 (patch)
tree55f00ebfd74add3bf0dc264958013c8bdc16ff43
parent79ba7967f4813445c3ce5624170c19584bbfda72 (diff)
downloadllvm-2074fec5beb4eca9d438acd3b37c2c6d20b891b1.tar.gz
[MLIR][LLVM] Fix a tiny typo in the dialect docs.
Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D92333
-rw-r--r--mlir/docs/Dialects/LLVM.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/docs/Dialects/LLVM.md b/mlir/docs/Dialects/LLVM.md
index 57c32a3fc74b..9f423c0b3323 100644
--- a/mlir/docs/Dialects/LLVM.md
+++ b/mlir/docs/Dialects/LLVM.md
@@ -474,8 +474,8 @@ llvm.mlir.global @glob(0 : f32) : !llvm.float
Unlike LLVM IR, MLIR does not have first-class null pointers. They must be
explicitly created as SSA values using `llvm.mlir.null`. This operation has
-operands or attributes, and returns a null value of a wrapped LLVM IR pointer
-type.
+no operands or attributes, and returns a null value of a wrapped LLVM IR
+pointer type.
Examples: