1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

Add proofreader's changes to docs.

Fix misspelling of disbursion to dispersion.
This commit is contained in:
Bruce Momjian
2000-10-05 19:48:34 +00:00
parent 05e3d0ee86
commit b32685a999
62 changed files with 259 additions and 259 deletions

View File

@ -1,5 +1,5 @@
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.11 2000/08/24 23:36:29 tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.12 2000/10/05 19:48:17 momjian Exp $
Postgres documentation
-->
@ -169,7 +169,7 @@ ERROR: PL handler function <replaceable class="parameter">funcname</replaceable
<para>
The call handler for a procedural language must be written
in a compiled language such as 'C' and registered with
in a compiled language such as C and registered with
<productname>Postgres</productname> as a function taking
no arguments and returning the
<type>opaque</type> type, a placeholder for unspecified or undefined types.
@ -206,7 +206,7 @@ ERROR: PL handler function <replaceable class="parameter">funcname</replaceable
<filename>pg_proc</filename> table entry. This may be the
source text in the procedural
language itself (like for PL/Tcl), a pathname to a
file or anything else that tells the call handler what to
file, or anything else that tells the call handler what to
do in detail.
</para>
@ -295,7 +295,7 @@ ERROR: PL handler function <replaceable class="parameter">funcname</replaceable
Usage
</title>
<para>
This is a template for a PL handler written in 'C':
This is a template for a PL handler written in C:
<programlisting>
#include "executor/spi.h"
#include "commands/trigger.h"