summaryrefslogtreecommitdiff
path: root/src/cairo-mutex-type-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:49:44 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:49:44 -0500
commit0d898f2badf41d3b0ae5ee88943c44cf49690f5d (patch)
tree88c9e1a4fd355af9fe074ca5206ecafe1c642c90 /src/cairo-mutex-type-private.h
parent9ecde82d35ead4975ce110bb2012264e3ca9d2e1 (diff)
downloadcairo-0d898f2badf41d3b0ae5ee88943c44cf49690f5d.tar.gz
[doc] Make sure all type names in docs are prefixed by #
Diffstat (limited to 'src/cairo-mutex-type-private.h')
-rw-r--r--src/cairo-mutex-type-private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-mutex-type-private.h b/src/cairo-mutex-type-private.h
index cb00c77f6..1a29dcbf3 100644
--- a/src/cairo-mutex-type-private.h
+++ b/src/cairo-mutex-type-private.h
@@ -65,7 +65,7 @@ CAIRO_BEGIN_DECLS
* on a win32 system even if you do not compile the win32
* surface/backend.
*
- * - typedef cairo_mutex_t to the proper mutex type on your target
+ * - typedef #cairo_mutex_t to the proper mutex type on your target
* system. Note that you may or may not need to use a pointer,
* depending on what kinds of initialization your mutex
* implementation supports. No trailing semicolon needed.
@@ -90,7 +90,7 @@ CAIRO_BEGIN_DECLS
* %CAIRO_MUTEX_UNLOCK (_cairo_some_mutex);
*
* - #define %CAIRO_MUTEX_NIL_INITIALIZER to something that can
- * initialize the cairo_mutex_t type you defined. Most of the
+ * initialize the #cairo_mutex_t type you defined. Most of the
* time one of 0, %NULL, or {} works. At this point
* you should be able to compile the following snippet:
*
@@ -134,7 +134,7 @@ CAIRO_BEGIN_DECLS
* #define CAIRO_MUTEX_FINALIZE() CAIRO_MUTEX_NOOP
*
* - That is all. If for any reason you think the above API is
- * not enough to implement cairo_mutex_t on your system, please
+ * not enough to implement #cairo_mutex_t on your system, please
* stop and write to the cairo mailing list about it. DO NOT
* poke around cairo-mutex-private.h for possible solutions.
*/