Skip to content

Commit 498b7bb

Browse files
committed
Fix some typos in pg_variables doc
1 parent 779f392 commit 498b7bb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

doc/src/sgml/pg_variables.sgml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<sect2 id="pg-varaibles-introduction">
44
<title>Introduction</title>
55
<para>
6-
The <emphasis role="strong">pg_variables</emphasis> module
6+
The <filename>pg_variables</filename> module
77
provides functions to work with variables of various types.
88
Created variables live only in the current user session.
99
</para>
@@ -497,8 +497,7 @@ SELECT pgv_get_int('vars', 'int2');
497497
(1 row)
498498
</programlisting>
499499
<para>
500-
Let's assume we have a <emphasis role="strong">tab</emphasis>
501-
table:
500+
Let's assume we have a <varname>tab</varname> table:
502501
</para>
503502
<programlisting>
504503
CREATE TABLE tab (id int, t varchar);
@@ -567,7 +566,7 @@ SELECT * FROM pgv_stats() order by package;
567566
(1 row)
568567
</programlisting>
569568
<para>
570-
You can delete variables or hole packages:
569+
You can delete variables or whole packages:
571570
</para>
572571
<programlisting>
573572
SELECT pgv_remove('vars', 'int1');

0 commit comments

Comments
 (0)