[NUI] Resolve TextLable build warning
authorEunki Hong <eunkiki.hong@samsung.com>
Thu, 12 Oct 2023 14:51:41 +0000 (23:51 +0900)
committerEunki Hong <h.pichulia@gmail.com>
Wed, 25 Oct 2023 12:48:44 +0000 (21:48 +0900)
Reference documents : https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/

To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (&lt; and &gt;).

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs

index e935960..1c97921 100755 (executable)
@@ -1425,7 +1425,7 @@ namespace Tizen.NUI.BaseComponents
         /// <code>
         /// var textFitArray = new Tizen.NUI.Text.TextFitArray();
         /// textFitArray.Enable = true;
-        /// textFitArray.OptionList = new List<Tizen.NUI.Text.TextFitArrayOption>()
+        /// textFitArray.OptionList = new List&lt;Tizen.NUI.Text.TextFitArrayOption&gt;()
         /// {
         ///     new Tizen.NUI.Text.TextFitArrayOption(12, 18),
         ///     new Tizen.NUI.Text.TextFitArrayOption(24, 40),
@@ -1441,14 +1441,14 @@ namespace Tizen.NUI.BaseComponents
         /// [Binary search possible]
         /// |            | List index  |  0 |  1 |  2 |  3 |
         /// | OptionList | PointSize   | 24 | 28 | 32 | 48 |
-        /// |            | MinLineSize | 40 | 48 | 48 | 62 | << MinLineSize sorted in ascending order
+        /// |            | MinLineSize | 40 | 48 | 48 | 62 | &lt;&lt; MinLineSize sorted in ascending order
         ///                                    ^    ^
         ///                                    same values ​are not a problem
         ///
         /// [Binary search not possible]
         /// |            | List index  |  0 |  1 |  2 |  3 |
         /// | OptionList | PointSize   | 24 | 28 | 32 | 48 |
-        /// |            | MinLineSize | 40 | 48 | 38 | 62 | << MinLineSize is not sorted in ascending order
+        /// |            | MinLineSize | 40 | 48 | 38 | 62 | &lt;&lt; MinLineSize is not sorted in ascending order
         ///                                         ^
         /// </code>
         /// </example>