From 42a017978a9f7843a69a4f0278735ad40807b91a Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 4 Feb 2020 11:52:14 +0100 Subject: [PATCH] Fix doc typo --- include/options.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/options.hpp b/include/options.hpp index 03c82bd..edf1ab3 100644 --- a/include/options.hpp +++ b/include/options.hpp @@ -157,7 +157,7 @@ namespace ztd /*! @see option* find(char 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); */ option& operator[](const std::string& str) { return *this->find(str); }