@@ -2714,7 +2714,7 @@ impl SchemaApiTestSuite {
27142714 // Change the comment, this modification should not be committed
27152715 req. new_table_meta . comment = "some new comment" . to_string ( ) ;
27162716 // Expects no KV api level error, and no app level error.
2717- // For the convenience of reviewing, using explict type signature
2717+ // For the convenience of reviewing, using explicit type signature
27182718 let _r: databend_common_meta_app:: schema:: UpdateTableMetaReply = mt
27192719 . update_multi_table_meta_with_sender (
27202720 UpdateMultiTableMetaReq {
@@ -5526,7 +5526,7 @@ impl SchemaApiTestSuite {
55265526 let handle = runtime. spawn ( async move {
55275527 let resp = arc_mt. create_table ( create_table_req. clone ( ) ) . await ;
55285528
5529- // assert that when create table concurrently with corret params return error,
5529+ // assert that when create table concurrently with correct params return error,
55305530 // the error MUST be TxnRetryMaxTimes
55315531 if resp. is_err ( ) {
55325532 assert ! ( matches!(
@@ -5547,7 +5547,7 @@ impl SchemaApiTestSuite {
55475547 } ;
55485548 let resp = arc_mt. commit_table_meta ( commit_table_req) . await ;
55495549
5550- // assert that when commit_table_meta concurrently with corret params return error,
5550+ // assert that when commit_table_meta concurrently with correct params return error,
55515551 // the error MUST be TxnRetryMaxTimes or CommitTableMetaError(prev table id has been changed)
55525552 if resp. is_err ( ) {
55535553 assert ! (
0 commit comments