Skip to content

Commit 7432409

Browse files
committed
doc: Fix more typos
From: Alexander Law <exclusion@gmail.com>
1 parent e0e023b commit 7432409

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/src/sgml/ecpg.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6188,7 +6188,7 @@ cc -c test_mod.c -o test_mod.o
61886188

61896189
<para>
61906190
Next, generate <filename>test_cpp.o</> by compiling
6191-
<filename>test_cpp.cpp</> with the C++ compiler:.
6191+
<filename>test_cpp.cpp</> with the C++ compiler:
61926192
<programlisting>
61936193
c++ -c test_cpp.cpp -o test_cpp.o
61946194
</programlisting>
@@ -6294,9 +6294,9 @@ EXEC SQL ALLOCATE DESCRIPTOR mydesc;
62946294

62956295
<refsynopsisdiv>
62966296
<synopsis>
6297-
CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user_name</replaceable> ]
6297+
CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user</replaceable> ]
62986298
CONNECT TO DEFAULT
6299-
CONNECT <replaceable>connection_user_name</replaceable>
6299+
CONNECT <replaceable>connection_user</replaceable>
63006300
DATABASE <replaceable>connection_target</replaceable>
63016301
</synopsis>
63026302
</refsynopsisdiv>
@@ -7828,7 +7828,7 @@ main(void)
78287828
this mode is active, it tries to behave as if it were the <productname>Informix</productname>
78297829
precompiler for <productname>Informix</productname> E/SQL. Generally spoken this will allow you to use
78307830
the dollar sign instead of the <literal>EXEC SQL</> primitive to introduce
7831-
embedded SQL commands.:
7831+
embedded SQL commands:
78327832
<programlisting>
78337833
$int j = 3;
78347834
$CONNECT TO :dbname;
@@ -7900,7 +7900,7 @@ EXEC SQL FETCH MYCUR INTO :userid;
79007900
<listitem>
79017901
<para>
79027902
This statement closes the current connection. In fact, this is a
7903-
synonym for ECPG's <literal>DISCONNECT CURRENT</>.:
7903+
synonym for ECPG's <literal>DISCONNECT CURRENT</>:
79047904
<programlisting>
79057905
$CLOSE DATABASE; /* close the current connection */
79067906
EXEC SQL CLOSE DATABASE;

doc/src/sgml/pg_xlogdump.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ PostgreSQL documentation
138138

139139
<varlistentry>
140140
<term><option>-t <replaceable>timeline</replaceable></option></term>
141-
<term><option>--timelime=<replaceable>timeline</replaceable></option></term>
141+
<term><option>--timeline=<replaceable>timeline</replaceable></option></term>
142142
<listitem>
143143
<para>
144144
Timeline from which to read log records. The default is to use the

0 commit comments

Comments
 (0)