Corrections in API documentation

This commit is contained in:
Laurent Gomila 2012-07-14 17:26:21 +02:00
parent 396f675ca2
commit e3261f0430

View File

@ -86,10 +86,10 @@ public :
/// automatically be constructed from standard string types. /// automatically be constructed from standard string types.
/// So, the following calls are all valid: /// So, the following calls are all valid:
/// \code /// \code
/// text.SetString("hello"); /// text.setString("hello");
/// text.SetString(L"hello"); /// text.setString(L"hello");
/// text.SetString(std::string("hello")); /// text.setString(std::string("hello"));
/// text.SetString(std::wstring(L"hello")); /// text.setString(std::wstring(L"hello"));
/// \endcode /// \endcode
/// A text's string is empty by default. /// A text's string is empty by default.
/// ///