diff options
author | Peter Eisentraut | 2016-05-04 18:07:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-05-04 18:07:24 +0000 |
commit | 74324092a41707413ee529a789d53c166a0e2543 (patch) | |
tree | 3fa217a35136f5bb035709028ede7022ae77493c | |
parent | e0e023b2e7763729b88c2f80f288141d0de99938 (diff) |
doc: Fix more typos
From: Alexander Law <exclusion@gmail.com>
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 10 | ||||
-rw-r--r-- | doc/src/sgml/pg_xlogdump.sgml | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 5d3eef09fe7..46ab0f3b513 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -6188,7 +6188,7 @@ cc -c test_mod.c -o test_mod.o <para> Next, generate <filename>test_cpp.o</> by compiling - <filename>test_cpp.cpp</> with the C++ compiler:. + <filename>test_cpp.cpp</> with the C++ compiler: <programlisting> c++ -c test_cpp.cpp -o test_cpp.o </programlisting> @@ -6294,9 +6294,9 @@ EXEC SQL ALLOCATE DESCRIPTOR mydesc; <refsynopsisdiv> <synopsis> -CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user_name</replaceable> ] +CONNECT TO <replaceable>connection_target</replaceable> [ AS <replaceable>connection_name</replaceable> ] [ USER <replaceable>connection_user</replaceable> ] CONNECT TO DEFAULT -CONNECT <replaceable>connection_user_name</replaceable> +CONNECT <replaceable>connection_user</replaceable> DATABASE <replaceable>connection_target</replaceable> </synopsis> </refsynopsisdiv> @@ -7828,7 +7828,7 @@ main(void) this mode is active, it tries to behave as if it were the <productname>Informix</productname> precompiler for <productname>Informix</productname> E/SQL. Generally spoken this will allow you to use the dollar sign instead of the <literal>EXEC SQL</> primitive to introduce - embedded SQL commands.: + embedded SQL commands: <programlisting> $int j = 3; $CONNECT TO :dbname; @@ -7900,7 +7900,7 @@ EXEC SQL FETCH MYCUR INTO :userid; <listitem> <para> This statement closes the current connection. In fact, this is a - synonym for ECPG's <literal>DISCONNECT CURRENT</>.: + synonym for ECPG's <literal>DISCONNECT CURRENT</>: <programlisting> $CLOSE DATABASE; /* close the current connection */ EXEC SQL CLOSE DATABASE; diff --git a/doc/src/sgml/pg_xlogdump.sgml b/doc/src/sgml/pg_xlogdump.sgml index 0f291413428..4d3dc5e9a53 100644 --- a/doc/src/sgml/pg_xlogdump.sgml +++ b/doc/src/sgml/pg_xlogdump.sgml @@ -138,7 +138,7 @@ PostgreSQL documentation <varlistentry> <term><option>-t <replaceable>timeline</replaceable></option></term> - <term><option>--timelime=<replaceable>timeline</replaceable></option></term> + <term><option>--timeline=<replaceable>timeline</replaceable></option></term> <listitem> <para> Timeline from which to read log records. The default is to use the |