Fix doc typo
This commit is contained in:
parent
eadcebff7f
commit
42a017978a
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ namespace ztd
|
||||||
/*! @see option* find(char c)
|
/*! @see option* find(char c)
|
||||||
*/
|
*/
|
||||||
option& operator[](const char c) { return *this->find(c); }
|
option& operator[](const char c) { return *this->find(c); }
|
||||||
//! @brief Get option with char name
|
//! @brief Get option with string name
|
||||||
/*! @see option* find(const std::string& str);
|
/*! @see option* find(const std::string& str);
|
||||||
*/
|
*/
|
||||||
option& operator[](const std::string& str) { return *this->find(str); }
|
option& operator[](const std::string& str) { return *this->find(str); }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue