Skip to content

Commit 537e487

Browse files
Fix some typos from #69746. (NFC)
1 parent 129659c commit 537e487

File tree

1 file changed

+2
-2
lines changed
  • mlir/include/mlir-c

1 file changed

+2
-2
lines changed

mlir/include/mlir-c/IR.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -705,12 +705,12 @@ typedef enum MlirWalkOrder {
705705
} MlirWalkOrder;
706706

707707
/// 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`.
709709
typedef void (*MlirOperationWalkCallback)(MlirOperation, void *userData);
710710

711711
/// Walks operation `op` in `walkOrder` and calls `callback` on that operation.
712712
/// `*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.
714714
MLIR_CAPI_EXPORTED
715715
void mlirOperationWalk(MlirOperation op, MlirOperationWalkCallback callback,
716716
void *userData, MlirWalkOrder walkOrder);

0 commit comments

Comments
 (0)