jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=974ab41f2560167b87540e0ae27a07351d7efd26

commit 974ab41f2560167b87540e0ae27a07351d7efd26
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Tue Oct 15 17:28:35 2019 +0900

    csharp: fix to write cref Eina.Array<T> correctly
    
    Since the class is Eina.Array<T>, cref Eina.Array is replaced to
    Eina.Array<T>.
---
 src/bindings/mono/efl_mono/GenericModel.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bindings/mono/efl_mono/GenericModel.cs 
b/src/bindings/mono/efl_mono/GenericModel.cs
index 2da3da6803..1f92b8cd3e 100644
--- a/src/bindings/mono/efl_mono/GenericModel.cs
+++ b/src/bindings/mono/efl_mono/GenericModel.cs
@@ -86,7 +86,7 @@ public class GenericModel<T> : Efl.Object, Efl.IModel, 
IDisposable
    /// <param name="start">The start of the range.</param>
    /// <param name="count">The size of the range.</param>
    /// <returns>An <see cref="Eina.Future" />  that resolves to an
-   /// <see cref="Eina.Array" /> of children models.</returns>
+   /// <see cref="Eina.Array&lt;T&gt;" /> of children models.</returns>
    public Eina.Future GetChildrenSlice(  uint start,   uint count)
    {
        return model.GetChildrenSlice(start, count);
@@ -160,7 +160,7 @@ public class GenericModel<T> : Efl.Object, Efl.IModel, 
IDisposable
    /// <param name="start">The start of the range.</param>
    /// <param name="count">The size of the range.</param>
    /// <param name="token">Token to notify the async operation of external 
request to cancel.</param>
-   /// <returns>Task that resolves when the desired <see cref="Eina.Array" /> 
of
+   /// <returns>Task that resolves when the desired <see 
cref="Eina.Array&lt;T&gt;" /> of
    /// children models is ready.</returns>
    public System.Threading.Tasks.Task<Eina.Value> GetChildrenSliceAsync(  uint 
start,  uint count, System.Threading.CancellationToken 
token=default(System.Threading.CancellationToken))
    {

-- 


Reply via email to