Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6535bf3

Browse files
committed
doc: Fix more typos
From: Alexander Law <exclusion@gmail.com>
1 parent 4bbc1a7 commit 6535bf3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/src/sgml/ecpg.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6190,7 +6190,7 @@ cc -c test_mod.c -o test_mod.o
61906190

61916191
<para>
61926192
Next, generate <filename>test_cpp.o</> by compiling
6193-
<filename>test_cpp.cpp</> with the C++ compiler:.
6193+
<filename>test_cpp.cpp</> with the C++ compiler:
61946194
<programlisting>
61956195
c++ -c test_cpp.cpp -o test_cpp.o
61966196
</programlisting>
@@ -6296,9 +6296,9 @@ EXEC SQL ALLOCATE DESCRIPTOR mydesc;
62966296

62976297
<refsynopsisdiv>
62986298
<synopsis>
6299-
CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user_name</replaceable> ]
6299+
CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user</replaceable> ]
63006300
CONNECT TO DEFAULT
6301-
CONNECT <replaceable>connection_user_name</replaceable>
6301+
CONNECT <replaceable>connection_user</replaceable>
63026302
DATABASE <replaceable>connection_target</replaceable>
63036303
</synopsis>
63046304
</refsynopsisdiv>
@@ -7830,7 +7830,7 @@ main(void)
78307830
this mode is active, it tries to behave as if it were the <productname>Informix</productname>
78317831
precompiler for <productname>Informix</productname> E/SQL. Generally spoken this will allow you to use
78327832
the dollar sign instead of the <literal>EXEC SQL</> primitive to introduce
7833-
embedded SQL commands.:
7833+
embedded SQL commands:
78347834
<programlisting>
78357835
$int j = 3;
78367836
$CONNECT TO :dbname;
@@ -7902,7 +7902,7 @@ EXEC SQL FETCH MYCUR INTO :userid;
79027902
<listitem>
79037903
<para>
79047904
This statement closes the current connection. In fact, this is a
7905-
synonym for ECPG's <literal>DISCONNECT CURRENT</>.:
7905+
synonym for ECPG's <literal>DISCONNECT CURRENT</>:
79067906
<programlisting>
79077907
$CLOSE DATABASE; /* close the current connection */
79087908
EXEC SQL CLOSE DATABASE;

doc/src/sgml/ref/pg_xlogdump.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ PostgreSQL documentation
149149

150150
<varlistentry>
151151
<term><option>-t <replaceable>timeline</replaceable></option></term>
152-
<term><option>--timelime=<replaceable>timeline</replaceable></option></term>
152+
<term><option>--timeline=<replaceable>timeline</replaceable></option></term>
153153
<listitem>
154154
<para>
155155
Timeline from which to read log records. The default is to use the

0 commit comments

Comments
 (0)