Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
dfcf99bf
Commit
dfcf99bf
authored
May 15, 2007
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bunch of bad grammar in the docs: "<link>, which see for more
information" is un-good English.
parent
79ba540b
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
27 deletions
+24
-27
doc/src/sgml/ddl.sgml
doc/src/sgml/ddl.sgml
+3
-2
doc/src/sgml/ref/alter_role.sgml
doc/src/sgml/ref/alter_role.sgml
+6
-5
doc/src/sgml/ref/alter_user.sgml
doc/src/sgml/ref/alter_user.sgml
+2
-3
doc/src/sgml/ref/begin.sgml
doc/src/sgml/ref/begin.sgml
+3
-3
doc/src/sgml/ref/create_group.sgml
doc/src/sgml/ref/create_group.sgml
+2
-3
doc/src/sgml/ref/create_user.sgml
doc/src/sgml/ref/create_user.sgml
+2
-3
doc/src/sgml/ref/createlang.sgml
doc/src/sgml/ref/createlang.sgml
+2
-2
doc/src/sgml/ref/drop_group.sgml
doc/src/sgml/ref/drop_group.sgml
+2
-3
doc/src/sgml/ref/drop_user.sgml
doc/src/sgml/ref/drop_user.sgml
+2
-3
No files found.
doc/src/sgml/ddl.sgml
View file @
dfcf99bf
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.7
4 2007/05/03 15:05:56
neilc Exp $ -->
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.7
5 2007/05/15 19:43:50
neilc Exp $ -->
<
chapter
id
=
"ddl"
>
<
title
>
Data
Definition
</
title
>
...
...
@@ -1095,7 +1095,8 @@ CREATE TABLE order_items (
All these actions are performed using the
<xref linkend="sql-altertable" endterm="sql-altertable-title">
command, which see for details beyond those given here.
command, whose reference page contains details beyond those given
here.
</para>
<sect2>
...
...
doc/src/sgml/ref/alter_role.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_role.sgml,v 1.
7 2006/09/16 00:30:16 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_role.sgml,v 1.
8 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -52,8 +52,8 @@ ALTER ROLE <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>
<para>
The first variant of this command listed in the synopsis can change
many of the role attributes that can be specified in
<xref linkend="sql-createrole" endterm="sql-createrole-title">
,
which see for details.
(All the possible attributes are covered,
<xref linkend="sql-createrole" endterm="sql-createrole-title">
.
(All the possible attributes are covered,
except that there are no options for adding or removing memberships; use
<xref linkend="SQL-GRANT" endterm="SQL-GRANT-title"> and
<xref linkend="SQL-REVOKE" endterm="SQL-REVOKE-title"> for that.)
...
...
@@ -127,8 +127,9 @@ ALTER ROLE <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>
<listitem>
<para>
These clauses alter attributes originally set by
<xref linkend="SQL-CREATEROLE" endterm="SQL-CREATEROLE-title">,
which see for more information.
<xref linkend="SQL-CREATEROLE"
endterm="SQL-CREATEROLE-title">. For more information, see the
<command>CREATE ROLE</command> reference page.
</para>
</listitem>
</varlistentry>
...
...
doc/src/sgml/ref/alter_user.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.4
2 2006/09/16 00:30:16 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.4
3 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -46,8 +46,7 @@ ALTER USER <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>
<para>
<command>ALTER USER</command> is now an alias for
<xref linkend="sql-alterrole" endterm="sql-alterrole-title">,
which see for more information.
<xref linkend="sql-alterrole" endterm="sql-alterrole-title">.
</para>
</refsect1>
...
...
doc/src/sgml/ref/begin.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/begin.sgml,v 1.3
5 2007/01/31 23:26:02 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/begin.sgml,v 1.3
6 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -133,8 +133,8 @@ BEGIN;
<command>BEGIN</command> is a <productname>PostgreSQL</productname>
language extension. It is equivalent to the SQL-standard command
<xref linkend="sql-start-transaction"
endterm="sql-start-transaction-title">, wh
ich see for additional
compatibility information.
endterm="sql-start-transaction-title">, wh
ose reference page
co
ntains additional co
mpatibility information.
</para>
<para>
...
...
doc/src/sgml/ref/create_group.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_group.sgml,v 1.1
7 2006/09/16 00:30:17 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_group.sgml,v 1.1
8 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -46,8 +46,7 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
<para>
<command>CREATE GROUP</command> is now an alias for
<xref linkend="sql-createrole" endterm="sql-createrole-title">,
which see for more information.
<xref linkend="sql-createrole" endterm="sql-createrole-title">.
</para>
</refsect1>
...
...
doc/src/sgml/ref/create_user.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.
39 2006/09/16 00:30:17 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.
40 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -47,8 +47,7 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
<para>
<command>CREATE USER</command> is now an alias for
<xref linkend="sql-createrole" endterm="sql-createrole-title">,
which see for more information.
<xref linkend="sql-createrole" endterm="sql-createrole-title">.
The only difference is that when the command is spelled
<command>CREATE USER</command>, <literal>LOGIN</> is assumed
by default, whereas <literal>NOLOGIN</> is assumed when
...
...
doc/src/sgml/ref/createlang.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/createlang.sgml,v 1.4
0 2007/03/26 17:23:36 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/createlang.sgml,v 1.4
1 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -42,7 +42,7 @@ PostgreSQL documentation
programming language to a <productname>PostgreSQL</productname> database.
<application>createlang</application> is just a wrapper around the
<xref linkend="sql-createlanguage" endterm="sql-createlanguage-title">
command
, which see for additional information
.
command.
</para>
</refsect1>
...
...
doc/src/sgml/ref/drop_group.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/drop_group.sgml,v 1.1
3 2006/09/16 00:30:18 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/drop_group.sgml,v 1.1
4 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -29,8 +29,7 @@ DROP GROUP [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, ..
<para>
<command>DROP GROUP</command> is now an alias for
<xref linkend="sql-droprole" endterm="sql-droprole-title">,
which see for more information.
<xref linkend="sql-droprole" endterm="sql-droprole-title">.
</para>
</refsect1>
...
...
doc/src/sgml/ref/drop_user.sgml
View file @
dfcf99bf
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/drop_user.sgml,v 1.2
3 2006/09/16 00:30:18 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/drop_user.sgml,v 1.2
4 2007/05/15 19:43:51 neilc
Exp $
PostgreSQL documentation
-->
...
...
@@ -29,8 +29,7 @@ DROP USER [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, ...
<para>
<command>DROP USER</command> is now an alias for
<xref linkend="sql-droprole" endterm="sql-droprole-title">,
which see for more information.
<xref linkend="sql-droprole" endterm="sql-droprole-title">.
</para>
</refsect1>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment