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>.
This commit is contained in:
Jaehyun Cho 2019-10-15 17:28:35 +09:00
parent fbe554037b
commit 974ab41f25
1 changed files with 2 additions and 2 deletions

View File

@ -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))
{