From 902ea935e4df7115a5b0577053045a8581b56e5e Mon Sep 17 00:00:00 2001 From: Bruno da Silva Belo Date: Mon, 14 Oct 2019 18:01:30 -0300 Subject: [PATCH] csharp: updating Factory docs. Summary: ref T8345 Reviewers: lauromoura, felipealmeida, segfaultxavi, woohyun Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8345 Differential Revision: https://phab.enlightenment.org/D10375 --- src/bindings/mono/efl_mono/Factory.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bindings/mono/efl_mono/Factory.cs b/src/bindings/mono/efl_mono/Factory.cs index 2c9f139ca7..be429fd12a 100644 --- a/src/bindings/mono/efl_mono/Factory.cs +++ b/src/bindings/mono/efl_mono/Factory.cs @@ -14,13 +14,12 @@ namespace Efl { namespace Ui { /// var factory = Efl.Ui.Factory<Efl.Ui.Button>(); /// factory.Style().Bind("Name"); // The factory Style property is bound to the Name property for the given model. /// -/// -/// Since EFL 1.23. -/// /// public class ItemFactory : Efl.Ui.LayoutFactory, IDisposable { - /// Creates a new factory. + /// Creates a new factory. + /// + /// The parent of the factory. public ItemFactory(Efl.Object parent = null) : base (parent, typeof(T)) {