docs: efl_vpath: fix smaller tpyos and document manager class methods

This commit is contained in:
Stefan Schmidt 2016-04-26 13:57:55 +02:00
parent 9eb488aaa5
commit e165baf37c
2 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ class Efl.Vpath_File (Eo.Base)
return: bool; [[ Result callback already called ]] return: bool; [[ Result callback already called ]]
} }
wait { wait {
[[ If not fteched yet, wait until it is and call result cb ]] [[ If not fetched yet, wait until it is and call result cb ]]
} }
} }
events { events {

View File

@ -15,14 +15,14 @@ class Efl.Vpath_Manager (Eo.Base)
return: own(Efl.Vpath_File *); [[ An object representing the file ]] return: own(Efl.Vpath_File *); [[ An object representing the file ]]
} }
register @class { register @class {
[[ ]] [[Register a vpath with the manager ]]
params { params {
priority: int; [[ Search order - higher values tired first ]] priority: int; [[ Search order - higher values tried first ]]
vpath: Efl.Vpath * @nonull; [[ A Vpath implementation object ]] vpath: Efl.Vpath * @nonull; [[ A Vpath implementation object ]]
} }
} }
unregister @class { unregister @class {
[[ ]] [[ Unregister a vpath from the manager ]]
params { params {
vpath: Efl.Vpath * @nonull; [[ A Vpath implementation object ]] vpath: Efl.Vpath * @nonull; [[ A Vpath implementation object ]]
} }