summaryrefslogtreecommitdiff
path: root/src/cairo-cache-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 21:49:57 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 21:49:57 -0500
commitf0633f4449c39a8f78c582790fb5dc85899b5d82 (patch)
tree11508df085c9e4484b5715f001500bcc778bbb2e /src/cairo-cache-private.h
parent9ba8f6b1b0a4fbf2407e0dbd767f043c6920344c (diff)
downloadcairo-f0633f4449c39a8f78c582790fb5dc85899b5d82.tar.gz
[doc] Make sure all function names in docs are followed by ()
Diffstat (limited to 'src/cairo-cache-private.h')
-rw-r--r--src/cairo-cache-private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-cache-private.h b/src/cairo-cache-private.h
index e2e2056e8..65a8aee83 100644
--- a/src/cairo-cache-private.h
+++ b/src/cairo-cache-private.h
@@ -55,7 +55,7 @@
* } my_entry_t;
*
* which then allows a pointer to my_entry_t to be passed to any of
- * the cairo_cache functions as follows without requiring a cast:
+ * the #cairo_cache_t functions as follows without requiring a cast:
*
* _cairo_cache_insert (cache, &my_entry->base, size);
*
@@ -78,7 +78,7 @@
* Which parts of the entry make up the "key" and which part make up
* the value are entirely up to the caller, (as determined by the
* computation going into base.hash as well as the keys_equal
- * function). A few of the cairo_cache functions accept an entry which
+ * function). A few of the #cairo_cache_t functions accept an entry which
* will be used exclusively as a "key", (indicated by a parameter name
* of key). In these cases, the value-related fields of the entry need
* not be initialized if so desired.