[Player] Fix doxgen bug
authorEunhae Choi <eunhae1.choi@samsung.com>
Mon, 29 May 2017 08:45:54 +0000 (17:45 +0900)
committerEunhae Choi <eunhae1.choi@samsung.com>
Mon, 29 May 2017 08:46:30 +0000 (17:46 +0900)
Change-Id: Ic682d013f879b36151154b29cd00f113df8191c1

src/Tizen.Multimedia.MediaPlayer/Player/MediaStreamSeekingOccurredEventArgs.cs
src/Tizen.Multimedia.MediaPlayer/Player/PlaybackInterruptedEventArgs.cs
src/Tizen.Multimedia.MediaPlayer/Player/Player.cs

index 7ac76fd..6bad4ec 100644 (file)
@@ -25,7 +25,7 @@ namespace Tizen.Multimedia
        /// <summary>
         /// Initialize a new instance of the MediaStreamSeekingOccurredEventArgs class.
         /// </summary>
-        /// <param name="status">The value indicating the new position to seek.</param>
+        /// <param name="offset">The value indicating the new position to seek.</param>
         public MediaStreamSeekingOccurredEventArgs(ulong offset)
         {
            Offset = offset;
index 4c95a54..03b87d1 100644 (file)
@@ -25,7 +25,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Initialize a new instance of the PlaybackInterruptedEventArgs class.
         /// </summary>
-        /// <param name="status">The enum value indicating the reason.</param>
+        /// <param name="reason">The enum value indicating the reason.</param>
         public PlaybackInterruptedEventArgs(PlaybackInterruptionReason reason)
         {
             Reason = reason;
index a222a0d..f147e59 100644 (file)
@@ -574,7 +574,7 @@ namespace Tizen.Multimedia
         /// <summary>
         /// Sets the mute state.
         /// </summary>
-        /// <param name="mute">true to mute the player; otherwise, false.</value>
+        /// <param name="mute">true to mute the player; otherwise, false.</param>
         /// <exception cref="ObjectDisposedException">The player has already been disposed of.</exception>
         public void SetMute(bool mute)
         {