diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo index 94c72bc233..25756fadba 100644 --- a/src/lib/eio/efl_io_manager.eo +++ b/src/lib/eio/efl_io_manager.eo @@ -42,7 +42,7 @@ class Efl.Io.Manager (Efl.Loop_User) xattr_ls { [[Lists all extended attributes asynchronously.]] params { - @in path: string;[[Path we want to list entries for]] + @in path: string; [[Path we want to list entries for]] } return: future)>; [[Extended attributes]] } @@ -60,17 +60,17 @@ class Efl.Io.Manager (Efl.Loop_User) [[Retrieves or sets information of a given extended attribute.]] set { values { - data: ptr(Eina.Binbuf); - flags: Eina.Xattr.Flags; + data: ptr(Eina.Binbuf); [[Data to set as information]] + flags: Eina.Xattr.Flags; [[Extended attributes flags]] } - return: future; + return: future; [[Future for asynchronous set operation]] } get { - return: future; + return: future; [[Information]] } keys { - path: string; - attribute: string; + path: string; [[File path]] + attribute: string; [[Attribute name]] } } @@ -91,7 +91,7 @@ class Efl.Io.Manager (Efl.Loop_User) @in file: ptr(Eina.File); [[Eina file handle]] // Here we're just interested whether the promise was fullfilled or not. No value needed. } - return: future; + return: future; [[Close return code]] } } } diff --git a/src/lib/eio/eio_sentry.eo b/src/lib/eio/eio_sentry.eo index 8948358c7c..9f2add7dec 100644 --- a/src/lib/eio/eio_sentry.eo +++ b/src/lib/eio/eio_sentry.eo @@ -15,29 +15,29 @@ class Eio.Sentry (Efl.Object) add { [[Adds a new path to the list of monitored paths.]] params { - @in path: string; + @in path: string; [[Path to monitor]] } - return : bool; + return : bool; [[$true on success, $false otherwise]] } del { [[Removes the given path from the monitored list.]] params { - @in path: string; + @in path: string; [[Path to remove from monitoring]] } } } events { - file,created: Eio.Sentry.Event; - file,deleted: Eio.Sentry.Event; - file,modified: Eio.Sentry.Event; - file,closed: Eio.Sentry.Event; - directory,created: Eio.Sentry.Event; - directory,deleted: Eio.Sentry.Event; - directory,modified: Eio.Sentry.Event; - directory,closed: Eio.Sentry.Event; - self,rename: Eio.Sentry.Event; - self,deleted: Eio.Sentry.Event; - error: Eio.Sentry.Event; + file,created: Eio.Sentry.Event; [[Called when a file was created]] + file,deleted: Eio.Sentry.Event; [[Called when a file was deleted]] + file,modified: Eio.Sentry.Event; [[Called when a file was modified]] + file,closed: Eio.Sentry.Event; [[Called when a file was closed]] + directory,created: Eio.Sentry.Event; [[Called when a directory was created]] + directory,deleted: Eio.Sentry.Event; [[Called when a directory was deleted]] + directory,modified: Eio.Sentry.Event; [[called when a directory was modified]] + directory,closed: Eio.Sentry.Event; [[Called when a directory was closed]] + self,rename: Eio.Sentry.Event; [[Called when the object was renamed]] + self,deleted: Eio.Sentry.Event; [[Called when the object was deleted]] + error: Eio.Sentry.Event; [[Called in case of an error]] } implements {