summaryrefslogtreecommitdiff
path: root/src/cairo-paginated-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 22:10:20 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 22:10:20 -0500
commit52cc603db1a805a0b3a8d7eba3171cd2785f10a7 (patch)
treefb3f36d4fc92f09afb3318d4315098d71d8aed10 /src/cairo-paginated-private.h
parentb790c5a6bcdd890c16d21753407188ed200ce445 (diff)
downloadcairo-52cc603db1a805a0b3a8d7eba3171cd2785f10a7.tar.gz
[doc] Stricter syntax check for type names, update test
Diffstat (limited to 'src/cairo-paginated-private.h')
-rw-r--r--src/cairo-paginated-private.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cairo-paginated-private.h b/src/cairo-paginated-private.h
index ab2ee1df8..35384c9f4 100644
--- a/src/cairo-paginated-private.h
+++ b/src/cairo-paginated-private.h
@@ -75,11 +75,11 @@ struct _cairo_paginated_surface_backend {
* for saving content in files such as PostScript or PDF files).
*
* To use the paginated surface, you'll first need to create your
- * 'real' surface using _cairo_surface_init and the standard
- * cairo_surface_backend_t. Then you also call
+ * 'real' surface using _cairo_surface_init() and the standard
+ * #cairo_surface_backend_t. Then you also call
* _cairo_paginated_surface_create which takes its own, much simpler,
- * cairo_paginated_surface_backend. You are free to return the result
- * of _cairo_paginated_surface_create from your public
+ * #cairo_paginated_surface_backend_t. You are free to return the result
+ * of _cairo_paginated_surface_create() from your public
* cairo_<foo>_surface_create. The paginated backend will be careful
* to not let the user see that they really got a "wrapped"
* surface. See test-paginated-surface.c for a fairly minimal example