summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-08-23 22:48:13 +0000
committerCarl Worth <cworth@cworth.org>2005-08-23 22:48:13 +0000
commit4047fa507720c01a9ac0377de92ddc71ff2f359f (patch)
tree476921b49192d73c58d0f146dbe831c5b52549ae /doc
parent0b616d20dd77aaa4549759a49d72dd1007290ebb (diff)
downloadcairo-4047fa507720c01a9ac0377de92ddc71ff2f359f.tar.gz
Prefer cairo over Cairo when not at the beginning of a sentence.
Diffstat (limited to 'doc')
-rw-r--r--doc/public/tmpl/cairo-matrix.sgml2
-rw-r--r--doc/public/tmpl/cairo-status.sgml2
-rw-r--r--doc/public/tmpl/cairo-types.sgml2
-rw-r--r--doc/public/tmpl/cairo.sgml6
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/public/tmpl/cairo-matrix.sgml b/doc/public/tmpl/cairo-matrix.sgml
index 3bdd74d63..a36bc99de 100644
--- a/doc/public/tmpl/cairo-matrix.sgml
+++ b/doc/public/tmpl/cairo-matrix.sgml
@@ -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>)
diff --git a/doc/public/tmpl/cairo-status.sgml b/doc/public/tmpl/cairo-status.sgml
index d0a859363..95976f954 100644
--- a/doc/public/tmpl/cairo-status.sgml
+++ b/doc/public/tmpl/cairo-status.sgml
@@ -4,7 +4,7 @@
<!-- ##### SECTION Short_Description ##### -->
- Decoding Cairo's status
+ Decoding cairo's status
<!-- ##### SECTION Long_Description ##### -->
<para>
diff --git a/doc/public/tmpl/cairo-types.sgml b/doc/public/tmpl/cairo-types.sgml
index f3c191086..82d4556ec 100644
--- a/doc/public/tmpl/cairo-types.sgml
+++ b/doc/public/tmpl/cairo-types.sgml
@@ -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>
diff --git a/doc/public/tmpl/cairo.sgml b/doc/public/tmpl/cairo.sgml
index 34d9fc032..dcb094e0e 100644
--- a/doc/public/tmpl/cairo.sgml
+++ b/doc/public/tmpl/cairo.sgml
@@ -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().