Prefer cairo over Cairo when not at the beginning of a sentence.

This commit is contained in:
Carl Worth 2005-08-23 22:48:13 +00:00
parent 0b616d20dd
commit 4047fa5077
5 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,11 @@
2005-08-23 Carl Worth <cworth@cworth.org>
* doc/public/tmpl/cairo-matrix.sgml:
* doc/public/tmpl/cairo-status.sgml:
* doc/public/tmpl/cairo-types.sgml:
* doc/public/tmpl/cairo.sgml: Prefer cairo over Cairo when not at
the beginning of a sentence.
2005-08-23 Billy Biggs <vektor@dumbterm.net>
* doc/public/tmpl/cairo-image.sgml: Add a long description.

View file

@ -9,7 +9,7 @@
<!-- ##### SECTION Long_Description ##### -->
<para><indexterm><primary>types</primary><secondary>cairo_matrix</secondary></indexterm><indexterm><primary/></indexterm>
#cairo_matrix_t is used throughout Cairo to convert between different
#cairo_matrix_t is used throughout cairo to convert between different
coordinate spaces. A #cairo_matrix_t holds an affine transformation,
such as a scale, rotation, shear, or a combination of these.
The transformation on a point (<literal>x</literal>,<literal>y</literal>)

View file

@ -4,7 +4,7 @@
<!-- ##### SECTION Short_Description ##### -->
Decoding Cairo's status
Decoding cairo's status
<!-- ##### SECTION Long_Description ##### -->
<para>

View file

@ -4,7 +4,7 @@
<!-- ##### SECTION Short_Description ##### -->
Generic data types used in the Cairo API
Generic data types used in the cairo API
<!-- ##### SECTION Long_Description ##### -->
<para>

View file

@ -4,13 +4,13 @@
<!-- ##### SECTION Short_Description ##### -->
The Cairo drawing context
The cairo drawing context
<!-- ##### SECTION Long_Description ##### -->
<para>
#cairo_t is the main object used when drawing with Cairo. To
draw with Cairo, you create a #cairo_t, set the target surface,
#cairo_t is the main object used when drawing with cairo. To
draw with cairo, you create a #cairo_t, set the target surface,
and drawing options for the #cairo_t, create shapes with
functions like cairo_move_to() and cairo_line_to(), and then
draw shapes with cairo_stroke() or cairo_fill().