Fix a few typos.

This commit is contained in:
Matthias Clasen
2003-04-11 21:56:50 +00:00
parent f19ed081a8
commit 890792db1a
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2003-04-11 Matthias Clasen <maclas@gmx.de>
* gobject/tmpl/gparamspec.sgml: Fix a few typos.
2003-04-09 Matthias Clasen <maclas@gmx.de>
* glib/glib-docs.sgml: Move dependencies to building.sgml.

View File

@@ -171,9 +171,9 @@ Decrement the reference count of a @pspec.
<!-- ##### FUNCTION g_param_spec_sink ##### -->
<para>
The initial reference count of a newly created #GParamSpec is 1,
eventhough no one has explicitely called g_param_spec_ref() on it yet.
So the einital reference count is flagged as "floating", untill someone
calls: g_param_spec_ref (@pspec); g_param_spec_sink (@pspec);
even though no one has explicitly called g_param_spec_ref() on it yet.
So the inital reference count is flagged as "floating", until someone
calls g_param_spec_ref (@pspec); g_param_spec_sink (@pspec);
in sequence on it, taking over the initial reference count (thus
ending up with a @pspec that has a reference count of 1 still, but is
not flagged "floating" anymore).