xartigas pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=41aa680c859a306dd13ff0f7f9a76aa7a046aa6a
commit 41aa680c859a306dd13ff0f7f9a76aa7a046aa6a Author: Yeongjong Lee <yj34....@samsung.com> Date: Fri Jul 26 15:00:17 2019 +0200 efl_mono: update docs of CreateWrapperFor Reviewers: lauromoura, felipealmeida, segfaultxavi, vitor.sousa Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9084 --- src/bindings/mono/eo_mono/iwrapper.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/bindings/mono/eo_mono/iwrapper.cs b/src/bindings/mono/eo_mono/iwrapper.cs index 09c82a7e81..6b7719e61f 100644 --- a/src/bindings/mono/eo_mono/iwrapper.cs +++ b/src/bindings/mono/eo_mono/iwrapper.cs @@ -569,11 +569,8 @@ public class Globals /// <summary>Creates a new wrapper for the given Eo id. /// - /// <para>If the Eo was created from a non-generated class (i.e. C#-pure class), it returns - /// the C# instance handle stored in the Eo's private data.</para> - /// - /// <para>For generated-class Eo instance, we use reflection to get the correct C# type to re-wrap - /// it.</para> + /// <para>If the Eo have a WrapperSupervisor, it returns the C# instance handle stored in its + /// WrapperSupervisor. otherwise, we use reflection to get the correct C# type to re-wrap it.</para> /// </summary> /// /// <param name="handle">The Eo id to be wrapped.</param> --