[Multimedia] Fixed errors in the doc-comments.
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / Common / IMediaBuffer.cs
index 0a6969e..1d5204b 100644 (file)
@@ -52,7 +52,7 @@ namespace Tizen.Multimedia
         bool IsReadOnly { get; }
 
         /// <summary>
-        /// Copies data from a byte array to the buffer.
+        /// Copies data from the buffer to a byte array.
         /// </summary>
         /// <param name="dest">The array to copy to.</param>
         /// <param name="startIndex">The zero-based index in the source array where copying should start.</param>
@@ -63,7 +63,7 @@ namespace Tizen.Multimedia
         void CopyTo(byte[] dest, int startIndex, int length);
 
         /// <summary>
-        /// Copies data from a byte array to the buffer.
+        /// Copies data from the buffer to a byte array.
         /// </summary>
         /// <param name="dest">The array to copy to.</param>
         /// <param name="startIndex">The zero-based index in the source array where copying should start.</param>
@@ -76,7 +76,7 @@ namespace Tizen.Multimedia
         void CopyTo(byte[] dest, int startIndex, int length, int offset);
 
         /// <summary>
-        /// Copies data from the buffer to a byte array.
+        /// Copies data from a byte array to the buffer.
         /// </summary>
         /// <param name="source">The array to copy from.</param>
         /// <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
@@ -88,7 +88,7 @@ namespace Tizen.Multimedia
         void CopyFrom(byte[] source, int startIndex, int length);
 
         /// <summary>
-        /// Copies data from the buffer to a byte array.
+        /// Copies data from a byte array to the buffer.
         /// </summary>
         /// <param name="source">The array to copy from.</param>
         /// <param name="startIndex">The zero-based index in the destination array where copying should start.</param>