Modify Scanner class
[platform/framework/native/appfw.git] / inc / FTextDecoder.h
index 511cb15..e0e11d0 100644 (file)
@@ -39,7 +39,7 @@ namespace Tizen { namespace Text
  *
  * The %Decoder class converts blocks of encoded bytes into blocks of Unicode characters
  * through successive calls to the GetCharsN() method. This class maintains state consistency information between
- * successive calls to GetCharsN(), enabling it to decode a sequence of bytes that span adjacent blocks.
+ * successive calls to %GetCharsN(), enabling it to decode a sequence of bytes that span adjacent blocks.
  *
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/text/converting_text_data_separate_blocks.htm">Converting Text Data in Separate Blocks</a>.
  *
@@ -67,8 +67,8 @@ public:
         * @param[in]   byteIndex The index from where decoding begins
         * @param[in]   byteCount The total number of bytes to decode
         * @param[in]   flush Set to @c true to allow this instance to flush its state at the end of the conversion, @n
-        * @param[out]  charCount The total number of characters that are generated by decoding the specified Tizen::Base::ByteBuffer instance
         *                                              else @c false
+        * @param[out]  charCount The total number of characters that are generated by decoding the specified Tizen::Base::ByteBuffer instance
         * @exception   E_SUCCESS                The method is successful.
         * @exception   E_INVALID_ARG            A specified input parameter is invalid, or
         *                                         the specified @c bytes is empty.
@@ -125,7 +125,7 @@ public:
         * @exception   E_UNDERFLOW                  This operation has caused the memory to underflow, or
         *                                                                                 the sum of the length of the specified @c byteIndex and @c byteCount is greater than the length of the specified @c bytes.
         * @exception   E_INVALID_ENCODING_RANGE The specified string contains code points that are outside the bounds of the character encoding scheme.
-        * @remarks     The GetCharsN() method maintains state consistency between conversions.
+        * @remarks     This method maintains state consistency between conversions.
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         * @remarks             The pointer to the Tizen::Base::WcharBuffer instance is not terminated by a @c null character.
         * @see                 Encoder::GetBytesN()