From 7ebb10d46a8d43af0fdafe0d9766e8bdca4d3ec5 Mon Sep 17 00:00:00 2001 From: Frederik Gossen Date: Wed, 15 Jul 2020 16:13:10 +0000 Subject: [PATCH] [MLIR][Standard] Update `assert` documentation post commit Update line wrapping. Differential Revision: https://reviews.llvm.org/D83769 --- mlir/include/mlir/Dialect/StandardOps/IR/Ops.td | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td b/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td index 452546f..c3e3ada 100644 --- a/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td +++ b/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td @@ -449,10 +449,9 @@ def AssertOp : Std_Op<"assert"> { let summary = "Assert operation with message attribute"; let description = [{ Assert operation with single boolean operand and an error message attribute. - If the argument is `true` this operation has no effect. - Otherwise, the program execution will abort. - The provided error message may be used by a runtime to propagate the error - to the user. + If the argument is `true` this operation has no effect. Otherwise, the + program execution will abort. The provided error message may be used by a + runtime to propagate the error to the user. Example: -- 2.7.4