From 1d3d5ec8ca4244fe036dd1fdb3446797ead84849 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Tue, 15 Oct 2019 17:28:35 +0900 Subject: [PATCH] csharp: fix to write cref Eina.Array correctly Since the class is Eina.Array, cref Eina.Array is replaced to Eina.Array. --- 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 : Efl.Object, Efl.IModel, IDisposable /// The start of the range. /// The size of the range. /// An that resolves to an - /// of children models. + /// of children models. public Eina.Future GetChildrenSlice( uint start, uint count) { return model.GetChildrenSlice(start, count); @@ -160,7 +160,7 @@ public class GenericModel : Efl.Object, Efl.IModel, IDisposable /// The start of the range. /// The size of the range. /// Token to notify the async operation of external request to cancel. - /// Task that resolves when the desired of + /// Task that resolves when the desired of /// children models is ready. public System.Threading.Tasks.Task GetChildrenSliceAsync( uint start, uint count, System.Threading.CancellationToken token=default(System.Threading.CancellationToken)) {