diff --git a/src/bindings/mono/eina_mono/eina_array.cs b/src/bindings/mono/eina_mono/eina_array.cs index 655fbab03a..0b96920fbd 100644 --- a/src/bindings/mono/eina_mono/eina_array.cs +++ b/src/bindings/mono/eina_mono/eina_array.cs @@ -107,7 +107,7 @@ public class Array : IEnumerable, IDisposable /// /// Create a new array. /// - ///// Step size of the array. + /// Step size of the array. public Array(uint step) { InitNew(step); @@ -116,8 +116,8 @@ public class Array : IEnumerable, IDisposable /// /// Create a new array. /// - ///// The native handle to be wrapped. - ///// Whether this wrapper owns the native handle. + /// The native handle to be wrapped. + /// Whether this wrapper owns the native handle. public Array(IntPtr handle, bool own) { if (handle == IntPtr.Zero) @@ -133,9 +133,9 @@ public class Array : IEnumerable, IDisposable /// /// Create a new array /// - ///// The native array to be wrapped. - ///// Whether this wrapper owns the native array. - ///// For compatibility with other EFL# containers. + /// The native array to be wrapped. + /// Whether this wrapper owns the native array. + /// For compatibility with other EFL# containers. public Array(IntPtr handle, bool own, bool ownContent) { if (handle == IntPtr.Zero) @@ -267,7 +267,7 @@ public class Array : IEnumerable, IDisposable /// /// Inserts the element of the array at the end. /// - ///// The value of the element to be inserted. + /// The value of the element to be inserted. public bool Push(T val) { IntPtr ele = ManagedToNativeAlloc(val); @@ -308,7 +308,7 @@ public class Array : IEnumerable, IDisposable /// /// Returns the element of the array at the specified position. /// - ///// The position of the desired element. + /// The position of the desired element. /// The element at the specified position public T DataGet(int idx) { @@ -319,7 +319,7 @@ public class Array : IEnumerable, IDisposable /// /// Returns the element of the array at the specified position. /// - ///// The position of the desired element. + /// The position of the desired element. /// The element at the specified position public T At(int idx) { @@ -329,8 +329,8 @@ public class Array : IEnumerable, IDisposable /// /// Replaces the element at the specified position. /// - ///// The position of the desired element. - ///// The value of the element to be inserted. + /// The position of the desired element. + /// The value of the element to be inserted. public void DataSet(int idx, T val) { IntPtr ele = InternalDataGet(idx); // TODO: check bondaries ?? diff --git a/src/bindings/mono/eina_mono/eina_binbuf.cs b/src/bindings/mono/eina_mono/eina_binbuf.cs index 66b89e272d..e2c2d8436a 100644 --- a/src/bindings/mono/eina_mono/eina_binbuf.cs +++ b/src/bindings/mono/eina_mono/eina_binbuf.cs @@ -90,7 +90,7 @@ public class Binbuf : IDisposable /// /// Create a new buffer with elements. /// - ///// Elements to initialize the new buffer. + /// Elements to initialize the new buffer. public Binbuf(Binbuf bb) { InitNew(); @@ -104,8 +104,8 @@ public class Binbuf : IDisposable /// /// Create a new buffer. /// - ///// The native handle to be wrapped. - ///// Whether this wrapper owns the native handle. + /// The native handle to be wrapped. + /// Whether this wrapper owns the native handle. public Binbuf(IntPtr handle, bool own) { Handle = handle; @@ -172,7 +172,7 @@ public class Binbuf : IDisposable /// /// Appends a string of inputed buffer's length to the buffer, reallocating as necessary. /// - ///// The string buffer. + /// The string buffer. /// true on success, false if data could not be appended. public bool Append(byte[] str) { @@ -182,8 +182,8 @@ public class Binbuf : IDisposable /// /// Appends a string of exact length to the buffer, reallocating as necessary. /// - ///// The string buffer. - ///// The exact length to use. + /// The string buffer. + /// The exact length to use. /// true on success, false if data could not be appended. public bool Append(byte[] str, uint length) { @@ -193,7 +193,7 @@ public class Binbuf : IDisposable /// /// Appends a Binbuf to the buffer. /// - ///// The buffer to be appended. + /// The buffer to be appended. /// true on success, false if data could not be appended. public bool Append(Binbuf bb) { @@ -203,7 +203,7 @@ public class Binbuf : IDisposable /// /// Appends a character to the buffer, reallocating as necessary. /// - ///// The char to appended. + /// The char to appended. /// true on success, false if data could not be appended. public bool Append(byte c) { @@ -213,7 +213,7 @@ public class Binbuf : IDisposable /// /// Appends a slice to the buffer, reallocating as necessary. /// - ///// The slice to appended. + /// The slice to appended. /// true on success, false if data could not be appended. public bool Append(Eina.Slice slice) { @@ -223,8 +223,8 @@ public class Binbuf : IDisposable /// /// Inserts a string of inputed buffer's length into the buffer, reallocating as necessary. /// - ///// The string buffer. - ///// The position to insert the string. + /// The string buffer. + /// The position to insert the string. /// true on success, false if data could not be appended. public bool Insert(byte[] str, uint pos) { @@ -234,9 +234,9 @@ public class Binbuf : IDisposable /// /// Inserts a string of exact length into the buffer, reallocating as necessary. /// - ///// The string buffer. - ///// The exact length to use. - ///// The position to insert the string. + /// The string buffer. + /// The exact length to use. + /// The position to insert the string. /// true on success, false if data could not be appended. public bool Insert(byte[] str, uint length, uint pos) { @@ -246,8 +246,8 @@ public class Binbuf : IDisposable /// /// Inserts a character into the buffer, reallocating as necessary. /// - ///// The char to appended. - ///// The position to insert the string. + /// The char to appended. + /// The position to insert the string. /// true on success, false if data could not be appended. public bool Insert(byte c, uint pos) { @@ -257,8 +257,8 @@ public class Binbuf : IDisposable /// /// Inserts a slice into the buffer, reallocating as necessary. /// - ///// The slice to appended. - ///// The position to insert the string. + /// The slice to appended. + /// The position to insert the string. /// true on success, false if data could not be appended. public bool Insert(Eina.Slice slice, uint pos) { @@ -268,10 +268,10 @@ public class Binbuf : IDisposable /// /// Removes a slice of the buffer. /// - ///// The initial (inclusive) slice position to start - ///// removing, in bytes. - ///// The final (non-inclusive) slice position to finish - ///// removing, in bytes.. + /// The initial (inclusive) slice position to start + /// removing, in bytes. + /// The final (non-inclusive) slice position to finish + /// removing, in bytes.. /// true on success, false on failure. public bool Remove(uint start, uint end) {