summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-11-11 15:28:49 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-11-11 15:28:49 +0100
commit6570c2692100b4b9b1440d1a7244620d586773c6 (patch)
tree30c67c1770a58fcf6fb864db19e86188111bfc4c
parent1976a0295162ce2e30401605a9bb614c7b219610 (diff)
downloadefl-6570c2692100b4b9b1440d1a7244620d586773c6.tar.gz
docs: efl_network*: add missing documentation
-rw-r--r--src/lib/ecore_con/efl_network.eo6
-rw-r--r--src/lib/ecore_con/efl_network_url.eo2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_con/efl_network.eo b/src/lib/ecore_con/efl_network.eo
index e2cdc79187..2f95a0584f 100644
--- a/src/lib/ecore_con/efl_network.eo
+++ b/src/lib/ecore_con/efl_network.eo
@@ -104,7 +104,7 @@ abstract Efl.Network (Efl.Object) {
legacy: null;
}
values {
- connected: bool; [[Returns true if connected, false otherwise.]]
+ connected: bool; [[$true if connected, $false otherwise.]]
}
}
@property timeout @virtual_pure {
@@ -172,12 +172,12 @@ abstract Efl.Network (Efl.Object) {
done_cb: Ecore_Con_Dns_Cb; [[Callback to notify when done.]]
data: const(void_ptr); [[User data to be given to done_cb.]]
}
- return: bool; [[true if the request did not fail to be set up, false otherwise.]]
+ return: bool; [[$true if the request did not fail to be set up, $false otherwise.]]
}
}
events {
data,received: Ecore.Con.Event_Data.Received; [[Data received on connection]]
- connection,upgraded;
+ connection,upgraded; [[FIXME: what does upgrade mean here??]]
connection,error: string; [[Error received on connection]]
}
}
diff --git a/src/lib/ecore_con/efl_network_url.eo b/src/lib/ecore_con/efl_network_url.eo
index 971d6d5fca..9dacb514be 100644
--- a/src/lib/ecore_con/efl_network_url.eo
+++ b/src/lib/ecore_con/efl_network_url.eo
@@ -5,7 +5,7 @@ class Efl.Network.Url (Efl.Object) {
@property url {
[[Controls the URL to send the request to.]]
set {
- return: bool (false); [[true on success, false on error.]]
+ return: bool (false); [[$true on success, $false on error.]]
}
get {
}