[MLIR][Standard] Update `assert` documentation post commit
authorFrederik Gossen <frgossen@google.com>
Wed, 15 Jul 2020 16:13:10 +0000 (16:13 +0000)
committerFrederik Gossen <frgossen@google.com>
Wed, 15 Jul 2020 16:13:53 +0000 (16:13 +0000)
Update line wrapping.

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

mlir/include/mlir/Dialect/StandardOps/IR/Ops.td

index 452546f..c3e3ada 100644 (file)
@@ -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: