diff --git a/docs/reference/gdk-pixbuf/tmpl/creating.sgml b/docs/reference/gdk-pixbuf/tmpl/creating.sgml
index 818aa9eb4b..7c8da80e7d 100644
--- a/docs/reference/gdk-pixbuf/tmpl/creating.sgml
+++ b/docs/reference/gdk-pixbuf/tmpl/creating.sgml
@@ -13,17 +13,17 @@ Creating a pixbuf from image data that is already in memory.
data buffer needs to be freed; this will happen when a #GdkPixbuf
is finalized by the reference counting functions If you have a
chunk of static data compiled into your application, you can pass
- in #NULL as the destroy notification function so that the data
+ in %NULL as the destroy notification function so that the data
will not be freed.
The gdk_pixbuf_new() function can be used as a convenience to
create a pixbuf with an empty buffer. This is equivalent to
- allocating a data buffer using malloc() and then wrapping it with
- gdk_pixbuf_new_from_data(). The gdk_pixbuf_new() function will
- compute an optimal rowstride so that rendering can be performed
- with an efficient algorithm.
+ allocating a data buffer using malloc() and
+ then wrapping it with gdk_pixbuf_new_from_data(). The gdk_pixbuf_new()
+ function will compute an optimal rowstride so that rendering can be
+ performed with an efficient algorithm.