stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f4ae4bfb69a70c5343f0ccaa88ea0d420e00427d

commit f4ae4bfb69a70c5343f0ccaa88ea0d420e00427d
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Mon Oct 24 17:21:48 2016 +0200

    docs: ecore: make consistent use of $true and $false keywords in docs
---
 src/lib/ecore/ecore_poller.eo | 2 +-
 src/lib/ecore/efl_loop.eo     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lib/ecore/ecore_poller.eo b/src/lib/ecore/ecore_poller.eo
index e0e2dec..d1703e9 100644
--- a/src/lib/ecore/ecore_poller.eo
+++ b/src/lib/ecore/ecore_poller.eo
@@ -42,7 +42,7 @@ class Ecore.Poller (Efl.Object)
          [[Polling interval rate of the poller.]]
          set {
             legacy: ecore_poller_poller_interval_set;
-            return: bool; [[true on success, false on failure.]]
+            return: bool; [[$true on success, $false on failure.]]
          }
          get {
             legacy: ecore_poller_poller_interval_get;
diff --git a/src/lib/ecore/efl_loop.eo b/src/lib/ecore/efl_loop.eo
index e416e1f..2cd3e24 100644
--- a/src/lib/ecore/efl_loop.eo
+++ b/src/lib/ecore/efl_loop.eo
@@ -2,7 +2,7 @@ import efl_types;
 
 struct Efl.Loop.Arguments {
    argv: const(array<const(stringshare)>);
-   initialization: bool; [[Set to true when the program should initialize its 
internal state. This happen once per process instance.]]
+   initialization: bool; [[Set to $true when the program should initialize its 
internal state. This happen once per process instance.]]
 }
 
 class Efl.Loop (Efl.Object)
@@ -89,7 +89,7 @@ class Efl.Loop (Efl.Object)
             @in klass: const(Efl.Class); [[The class provided by the 
registered provider.]]
             @in provider: const(Efl.Object); [[The provider for the newly 
registered class that has to provide that said Efl.Class.]]
          }
-         return: bool; [[true if successfully register, false otherwise.]]
+         return: bool; [[$true if successfully register, $false otherwise.]]
       }
       unregister {
          [[Will unregister a manager of a specific class that was previously 
registered and answered by eo.provider_find.]]
@@ -97,7 +97,7 @@ class Efl.Loop (Efl.Object)
             @in klass: const(Efl.Class); [[The class provided by the provider 
to unregister for.]]
             @in provider: const(Efl.Object); [[The provider for the registered 
class to unregister.]]
          }
-         return: bool; [[true if successfully unregistered, false otherwise.]]
+         return: bool; [[$true if successfully unregistered, $false 
otherwise.]]
       }
    }
    events {

-- 


Reply via email to