From f1fdcd315890542d84f9c71bad43308f76704469 Mon Sep 17 00:00:00 2001 From: Jacques Pienaar Date: Tue, 15 Oct 2019 12:50:51 -0700 Subject: [PATCH] Fix typos in InferTypeOpInterface. PiperOrigin-RevId: 274866986 Change-Id: I7fcd11514e0445bf9d245f775ff7dbdaee0162c6 --- .../mlir/include/mlir/Analysis/InferTypeOpInterface.td | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/third_party/mlir/include/mlir/Analysis/InferTypeOpInterface.td b/third_party/mlir/include/mlir/Analysis/InferTypeOpInterface.td index a155810b081..71377966f9d 100644 --- a/third_party/mlir/include/mlir/Analysis/InferTypeOpInterface.td +++ b/third_party/mlir/include/mlir/Analysis/InferTypeOpInterface.td @@ -16,8 +16,7 @@ // ============================================================================= // // This file contains a set of interfaces that can be used to define information -// related to call-like and callable operations. Each of which are defined along -// with the respective interface below. +// related to type inference. // //===----------------------------------------------------------------------===// @@ -47,8 +46,8 @@ def InferTypeOpInterface : OpInterface<"InferTypeOpInterface"> { The method takes an optional location which, if set, will be used to report errors on. The operands and attributes correspond to those with - which an Operation would be created (e.g., as used in Operation;:create). - Regions are the nested regions of the op. + which an Operation would be created (e.g., as used in Operation::create) + and the regions of the op. }], /*retTy=*/"SmallVector", /*methodName=*/"inferReturnTypes",