From: coderhyme Date: Tue, 8 Aug 2017 22:33:12 +0000 (+0900) Subject: Corrected wrong documentation tag. X-Git-Tag: submit/trunk/20170823.075128~94^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=080f82bc9ac3dbe771c0967a7e409adff3249f6e;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Corrected wrong documentation tag. Method should have returns tag, not value tag. Change-Id: Ic898905fa593e3f23a54156774f8338b61e5c4fe Signed-off-by: coderhyme --- diff --git a/src/Tizen.Multimedia.Radio/Radio/RadioInterruptedEventArgs.cs b/src/Tizen.Multimedia.Radio/Radio/RadioInterruptedEventArgs.cs index 8138546..84e4340 100644 --- a/src/Tizen.Multimedia.Radio/Radio/RadioInterruptedEventArgs.cs +++ b/src/Tizen.Multimedia.Radio/Radio/RadioInterruptedEventArgs.cs @@ -37,7 +37,7 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"Reason={ Reason.ToString() }"; } } diff --git a/src/Tizen.Multimedia.Radio/Radio/ScanUpdatedEventArgs.cs b/src/Tizen.Multimedia.Radio/Radio/ScanUpdatedEventArgs.cs index 6be5c55..174f670 100644 --- a/src/Tizen.Multimedia.Radio/Radio/ScanUpdatedEventArgs.cs +++ b/src/Tizen.Multimedia.Radio/Radio/ScanUpdatedEventArgs.cs @@ -36,7 +36,7 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() { return $"Frequency={ Frequency.ToString() }"; diff --git a/src/Tizen.Multimedia.Vision/MediaVision/Barcode.cs b/src/Tizen.Multimedia.Vision/MediaVision/Barcode.cs index 9e16d8b..6735533 100755 --- a/src/Tizen.Multimedia.Vision/MediaVision/Barcode.cs +++ b/src/Tizen.Multimedia.Vision/MediaVision/Barcode.cs @@ -54,7 +54,7 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"Region={Region}, Message={Message}, Type={Type.ToString()}"; } diff --git a/src/Tizen.Multimedia.Vision/MediaVision/Quadrangle.cs b/src/Tizen.Multimedia.Vision/MediaVision/Quadrangle.cs index 64f1175..577b5cd 100755 --- a/src/Tizen.Multimedia.Vision/MediaVision/Quadrangle.cs +++ b/src/Tizen.Multimedia.Vision/MediaVision/Quadrangle.cs @@ -51,7 +51,7 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"[{{{Points[0].ToString()}}}, {{{Points[1].ToString()}}}, {{{Points[2].ToString()}}}, {{{Points[3].ToString()}}}]"; } diff --git a/src/Tizen.Multimedia/Common/Point.cs b/src/Tizen.Multimedia/Common/Point.cs index 6b80ded..07357b5 100644 --- a/src/Tizen.Multimedia/Common/Point.cs +++ b/src/Tizen.Multimedia/Common/Point.cs @@ -56,13 +56,13 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"X={X.ToString()}, Y={Y.ToString()}"; /// /// Gets the hash code for this instance of . /// - /// The hash code for this instance of . + /// The hash code for this instance of . public override int GetHashCode() { return new { X, Y }.GetHashCode(); diff --git a/src/Tizen.Multimedia/Common/Range.cs b/src/Tizen.Multimedia/Common/Range.cs index 6f0de67..a1fe5e7 100644 --- a/src/Tizen.Multimedia/Common/Range.cs +++ b/src/Tizen.Multimedia/Common/Range.cs @@ -75,13 +75,13 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"Min={Min.ToString()}, Max={Max.ToString()}"; /// /// Gets the hash code for this instance of . /// - /// The hash code for this instance of . + /// The hash code for this instance of . public override int GetHashCode() { return new { Min, Max }.GetHashCode(); diff --git a/src/Tizen.Multimedia/Common/Rectangle.cs b/src/Tizen.Multimedia/Common/Rectangle.cs index bae7862..8f37ee1 100644 --- a/src/Tizen.Multimedia/Common/Rectangle.cs +++ b/src/Tizen.Multimedia/Common/Rectangle.cs @@ -127,13 +127,13 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"{_location.ToString()}, {_size.ToString()}"; /// /// Gets the hash code for this instance of . /// - /// The hash code for this instance of . + /// The hash code for this instance of . public override int GetHashCode() { return new { Location, Size }.GetHashCode(); diff --git a/src/Tizen.Multimedia/Common/Size.cs b/src/Tizen.Multimedia/Common/Size.cs index 6c16b11..2ccf856 100644 --- a/src/Tizen.Multimedia/Common/Size.cs +++ b/src/Tizen.Multimedia/Common/Size.cs @@ -55,13 +55,13 @@ namespace Tizen.Multimedia /// /// Returns a string that represents the current object. /// - /// A string that represents the current object. + /// A string that represents the current object. public override string ToString() => $"Width={ Width.ToString() }, Height={ Height.ToString() }"; /// /// Gets the hash code for this instance of . /// - /// The hash code for this instance of . + /// The hash code for this instance of . public override int GetHashCode() { return new { Width, Height }.GetHashCode();