From f4ae4bfb69a70c5343f0ccaa88ea0d420e00427d Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 24 Oct 2016 17:21:48 +0200 Subject: [PATCH] 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 e0e2decc80..d1703e987b 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 e416e1f3a7..2cd3e24b48 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); - 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 {