From d256a2ebccfaa9161febea66769788dc244bb403 Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Mon, 2 Jun 2014 21:45:30 -0400 Subject: [PATCH] Removed commented get() definition and corrected some documentation --- Jupiter/String_Type.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jupiter/String_Type.h b/Jupiter/String_Type.h index 5094ea3..138396b 100644 --- a/Jupiter/String_Type.h +++ b/Jupiter/String_Type.h @@ -47,7 +47,6 @@ namespace Jupiter * @return The element located at the specified index. */ const T &get(size_t index) const; - //T &get(size_t index) const; /** * @brief Returns the number of elements in the String. @@ -71,7 +70,7 @@ namespace Jupiter virtual const T *c_str() const = 0; /** - * @brief Sets the CString's contents based on the format string and input variables. + * @brief Sets the String's contents based on the format string and input variables. * Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. * * @param format Format that the string is compared against. @@ -84,7 +83,7 @@ namespace Jupiter virtual size_t vformat(const T *format, va_list args) = 0; /** - * @brief Appends to a CString's contents based on the format string and input variables. + * @brief Appends to a String's contents based on the format string and input variables. * Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. * * @param format Format that the string is compared against. @@ -127,7 +126,7 @@ namespace Jupiter * @brief Copies the data from the input string and concatenates it to the end of String. * * @param in String containing the data to be concatenated. - * @return New size of the CString. + * @return New size of the String. */ virtual size_t concat(const Jupiter::Readable_String &in); virtual size_t concat(const std::basic_string &in);