docs: use consistent style for comment blocks

prefix comment blocks with ///
This commit is contained in:
youben11
2022-07-07 08:29:08 +01:00
committed by Ayoub Benaissa
parent 2cfccd8f89
commit f4166a4973
45 changed files with 1073 additions and 1083 deletions

View File

@@ -57,8 +57,8 @@ struct AddRuntimeContextToFuncOpPattern
return mlir::success();
}
// Legal function are one that are private or has a Concrete.context as last
// arguments.
/// Legal function are one that are private or has a Concrete.context as last
/// arguments.
static bool isLegal(mlir::func::FuncOp funcOp) {
if (!funcOp.isPublic()) {
return true;