fix #1129: mispell, is_file_tpe() -> is_file_type() (#1130)

This commit is contained in:
DevilExileSu 2022-11-23 23:35:59 +08:00 committed by GitHub
parent 9c850ffc6f
commit a4479393d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ public:
bool is_empty() const { return addr_.is_none(); }
void set_empty();
bool is_mem_type() const { return addr_.is_memory(); }
bool is_file_tpe() const { return addr_.is_file(); }
bool is_file_type() const { return addr_.is_file(); }
TO_STRING_KV(K_(addr), KP_(buf), K_(row_type), K_(height));
public:
storage::ObMetaDiskAddr addr_;