Skip to content

Commit 1c9e5c3

Browse files
committed
Fix another typo
1 parent a0e1504 commit 1c9e5c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/include/clang/CIR/Dialect/IR/CIRTypes.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class StructType
8383

8484
enum RecordKind : uint32_t { Class, Union, Struct };
8585

86-
/// Create a identified and complete struct type.
86+
/// Create an identified and complete struct type.
8787
static StructType get(mlir::MLIRContext *context,
8888
llvm::ArrayRef<mlir::Type> members,
8989
mlir::StringAttr name, bool packed, bool padded,
@@ -94,15 +94,15 @@ class StructType
9494
mlir::StringAttr name, bool packed, bool padded, RecordKind kind,
9595
ASTRecordDeclInterface ast = {});
9696

97-
/// Create a identified and incomplete struct type.
97+
/// Create an identified and incomplete struct type.
9898
static StructType get(mlir::MLIRContext *context, mlir::StringAttr name,
9999
RecordKind kind);
100100
static StructType
101101
getChecked(llvm::function_ref<mlir::InFlightDiagnostic()> emitError,
102102
mlir::MLIRContext *context, mlir::StringAttr name,
103103
RecordKind kind);
104104

105-
/// Create a anonymous struct type (always complete).
105+
/// Create an anonymous struct type (always complete).
106106
static StructType get(mlir::MLIRContext *context,
107107
llvm::ArrayRef<mlir::Type> members, bool packed,
108108
bool padded, RecordKind kind,

0 commit comments

Comments
 (0)