diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-09-26 17:18:13 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-09-26 17:18:13 +0300 |
commit | 85cdb63f774f276b42b0f53d9746701c95fb1e92 (patch) | |
tree | 8671f1d692a7cae437d4a54d92ee97e902174bfb /storage/innobase | |
parent | 7aba6f8f8853acd18d471793f8b72aa1412b8151 (diff) | |
download | mariadb-git-85cdb63f774f276b42b0f53d9746701c95fb1e92.tar.gz |
Correct a function comment
Diffstat (limited to 'storage/innobase')
-rw-r--r-- | storage/innobase/dict/dict0dict.cc | 2 | ||||
-rw-r--r-- | storage/innobase/include/dict0mem.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/dict/dict0dict.cc b/storage/innobase/dict/dict0dict.cc index 3a4c8c19c00..553463755f6 100644 --- a/storage/innobase/dict/dict0dict.cc +++ b/storage/innobase/dict/dict0dict.cc @@ -611,7 +611,7 @@ dict_table_has_column( } /** Retrieve the column name. -@param[in] table table name */ +@param[in] table the table of this column */ const char* dict_col_t::name(const dict_table_t& table) const { ut_ad(table.magic_n == DICT_TABLE_MAGIC_N); diff --git a/storage/innobase/include/dict0mem.h b/storage/innobase/include/dict0mem.h index 3e06def55b0..adf0ea9e6c3 100644 --- a/storage/innobase/include/dict0mem.h +++ b/storage/innobase/include/dict0mem.h @@ -601,7 +601,7 @@ struct dict_col_t{ } def_val; /** Retrieve the column name. - @param[in] table table name */ + @param[in] table the table of this column */ const char* name(const dict_table_t& table) const; /** @return whether this is a virtual column */ |