X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseString.h;h=10178ba963755da56c42b320a97e3191993deaff;hb=7ee1c6b753636e4a392a5fc63a0a69d278f3b299;hp=37fbb3668d26c13ed61563fbbdce33b34a1098d0;hpb=6b44196c40a66b895028f7ba2e9b5e41bc715ab2;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseString.h b/inc/FBaseString.h index 37fbb36..10178ba 100644 --- a/inc/FBaseString.h +++ b/inc/FBaseString.h @@ -373,7 +373,7 @@ public: * @return A 32-bit @c signed integer value * @param[in] str0 The first %String instance to compare * @param[in] str1 The second %String instance to compare - * @remarks The method performs an ordinal comparison of each Unicode + * @remarks This method performs an ordinal comparison of each Unicode * character contained in the two given %String instances. * For instance, "U+xxx" is greater than "U+XXX", but smaller than "U+yyy". * @@ -398,7 +398,7 @@ public: * > 0 if the value of the current instance is greater than the value of the specified %String instance *@endcode * @param[in] str An instance of %String to compare - * @remarks The method performs an ordinal comparison of each Unicode character. For instance, + * @remarks This method performs an ordinal comparison of each Unicode character. For instance, * L"U+xxx" is greater than L"U+XXX", but smaller than L"U+yyy". */ int CompareTo(const String& str) const; @@ -425,7 +425,7 @@ public: * @return @c true if the value of the specified instance of Object is equal to the value of the current instance of %String, @n * else @c false * @param[in] obj An instance of Object to compare - * @remarks The method returns @c false if the specified @c obj is not a string. + * @remarks This method returns @c false if the specified @c obj is not a string. * @see Object::Equals() */ virtual bool Equals(const Object& obj) const; @@ -443,7 +443,7 @@ public: * @param[in] caseSensitive Set to @c true to perform a case sensitive ordinal comparison of the strings, @n * else @c false * - * @remarks The method performs an ordinal comparison of each Unicode + * @remarks This method performs an ordinal comparison of each Unicode * character contained in the two given %String instances. */ bool Equals(const String& str, bool caseSensitive) const;