File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -705,12 +705,12 @@ typedef enum MlirWalkOrder {
705
705
} MlirWalkOrder ;
706
706
707
707
/// Operation walker type. The handler is passed an (opaque) reference to an
708
- /// operation a pointer to a `userData`.
708
+ /// operation and a pointer to a `userData`.
709
709
typedef void (* MlirOperationWalkCallback )(MlirOperation , void * userData );
710
710
711
711
/// Walks operation `op` in `walkOrder` and calls `callback` on that operation.
712
712
/// `*userData` is passed to the callback as well and can be used to tunnel some
713
- /// some context or other data into the callback.
713
+ /// context or other data into the callback.
714
714
MLIR_CAPI_EXPORTED
715
715
void mlirOperationWalk (MlirOperation op , MlirOperationWalkCallback callback ,
716
716
void * userData , MlirWalkOrder walkOrder );
You can’t perform that action at this time.
0 commit comments