[Multimedia] Fixed comment errors in MediaPlayer 40/153140/2
authorcoderhyme <jhyo.kim@samsung.com>
Thu, 28 Sep 2017 03:49:42 +0000 (12:49 +0900)
committerJungHo Kim <jhyo.kim@samsung.com>
Thu, 28 Sep 2017 04:27:19 +0000 (04:27 +0000)
Change-Id: I84fd5d8d40b675dbe876aa277afa78196ff2bded
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia.MediaPlayer/Player/MediaBufferSource.cs

index 2785aef..79b93ef 100644 (file)
@@ -55,7 +55,7 @@ namespace Tizen.Multimedia
         /// Initializes a new instance of the MediaBufferSource class from the buffer.
         /// </summary>
         /// <param name="buffer">The source array to be copied into the buffer.</param>
-        /// <exception cref="ArgumentNullException"><paramref="buffer"/> is null.</exception>
+        /// <exception cref="ArgumentNullException"><paramref name="buffer"/> is null.</exception>
         public MediaBufferSource(byte[] buffer) : this(buffer, buffer == null ? 0 : buffer.Length)
         {
         }
@@ -68,7 +68,7 @@ namespace Tizen.Multimedia
         /// <param name="buffer">The source array to be copied into the buffer.</param>
         /// <param name="length">The value indicating the number of bytes to copy from the buffer.</param>
         /// <param name="offset">The value indicating the offset in the buffer of the first byte to copy.</param>
-        /// <exception cref="ArgumentNullException"><paramref="buffer"/> is null.</exception>
+        /// <exception cref="ArgumentNullException"><paramref name="buffer"/> is null.</exception>
         /// <exception cref="ArgumentOutOfRangeException">
         ///     <paramref name="offset"/> is less than zero.\n
         ///     -or-\n