summaryrefslogtreecommitdiff
path: root/docs/manual
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2017-12-05 11:25:30 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2017-12-05 11:25:58 +0100
commita670a417101fe2e052e071969123ca249265e3e0 (patch)
tree1d95f25fe3531601702d42776c6db7e8b8e2f8d4 /docs/manual
parent2597f7864eeaf379097d5014cb548d4461a62910 (diff)
manual: fix wrong references
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/devel.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/devel.rst b/docs/manual/devel.rst
index 260a00d..5c1d171 100644
--- a/docs/manual/devel.rst
+++ b/docs/manual/devel.rst
@@ -7,7 +7,7 @@ Developing new task filters
.. default-domain:: c
UFO filters are simple shared objects that expose their ``GType`` and implement
-the :type:`UfoFilter` class.
+the ``UfoFilter`` class.
Writing a task in C
@@ -276,7 +276,7 @@ implement this, we have to define a condition function that checks if a
As the filter installed the properties it also knows which type it is and which
``g_value_get_*()`` function to call. Now, we wait until this conditions holds
-using :c:func:`ufo_filter_wait_until` ::
+using ``ufo_filter_wait_until`` ::
/* Somewhere in ufo_filter_process() */
ufo_filter_wait_until(self, properties[PROP_CENTER_OF_ROTATION],
@@ -284,7 +284,7 @@ using :c:func:`ufo_filter_wait_until` ::
.. warning::
- :c:func:`ufo_filter_wait_until` might block indefinitely when the
+ ``ufo_filter_wait_until`` might block indefinitely when the
condition function never returns ``TRUE``.
.. seealso:: :ref:`faq-synchronize-properties`