Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc1bbabe

Browse files
committed
doc: Various typo/grammar fixes
Errors detected using Topy (https://github.com/intgr/topy), allchanges verified by hand and some manual tweaks added.Marti RaudseppIndividual changes backpatched, where applicable, as far as 9.0.
1 parente6841c4 commitc1bbabe

13 files changed

+15
-15
lines changed

‎doc/src/sgml/datatype.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2239,7 +2239,7 @@ January 8 04:05:06 1999 PST
22392239
<para>
22402240
Time zones, and time-zone conventions, are influenced by
22412241
political decisions, not just earth geometry. Time zones around the
2242-
world became somewhat standardized during the1900's,
2242+
world became somewhat standardized during the1900s,
22432243
but continue to be prone to arbitrary changes, particularly with
22442244
respect to daylight-savings rules.
22452245
<productname>PostgreSQL</productname> uses the widely-used

‎doc/src/sgml/pgbench.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ END;
637637
(useful when multiple scripts were specified with <literal>-f</>),
638638
and <replaceable>time_epoch</>/<replaceable>time_us</> are a
639639
UNIX epoch format timestamp and an offset
640-
in microseconds (suitable for creatinga ISO 8601
640+
in microseconds (suitable for creatingan ISO 8601
641641
timestamp with fractional seconds) showing when
642642
the transaction completed.
643643
</para>

‎doc/src/sgml/pgcrypto.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ pgp_pub_encrypt_bytea(data bytea, key bytea [, options text ]) returns bytea
538538
</synopsis>
539539
<para>
540540
Encrypt <parameter>data</> with a public PGP key <parameter>key</>.
541-
Giving this function a secret key will producea error.
541+
Giving this function a secret key will producean error.
542542
</para>
543543
<para>
544544
The <parameter>options</> parameter can contain option settings,

‎doc/src/sgml/pltcl.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
Sometimes it is desirable to write Tcl functions that are not restricted
5252
to safe Tcl. For example, one might want a Tcl function that sends
5353
email. To handle these cases, there is a variant of <application>PL/Tcl</> called <literal>PL/TclU</>
54-
(for untrusted Tcl). This isthe exact same language except that a full
54+
(for untrusted Tcl). This isexactly the same language except that a full
5555
Tcl interpreter is used. <emphasis>If <application>PL/TclU</> is used, it must be
5656
installed as an untrusted procedural language</emphasis> so that only
5757
database superusers can create functions in it. The writer of a <application>PL/TclU</>

‎doc/src/sgml/ref/alter_tsdictionary.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ALTER TEXT SEARCH DICTIONARY my_dict ( StopWords = newrussian );
116116
</programlisting>
117117

118118
<para>
119-
The following example command changes the language option to dutch,
119+
The following example command changes the language option to<literal>dutch</>,
120120
and removes the stopword option entirely.
121121
</para>
122122

‎doc/src/sgml/ref/comment.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ COMMENT ON SEQUENCE my_sequence IS 'Used to generate primary keys';
265265
COMMENT ON TABLE my_schema.my_table IS 'Employee Information';
266266
COMMENT ON TABLESPACE my_tablespace IS 'Tablespace for indexes';
267267
COMMENT ON TEXT SEARCH CONFIGURATION my_config IS 'Special word filtering';
268-
COMMENT ON TEXT SEARCH DICTIONARY swedish IS 'Snowball stemmer forswedish language';
268+
COMMENT ON TEXT SEARCH DICTIONARY swedish IS 'Snowball stemmer forSwedish language';
269269
COMMENT ON TEXT SEARCH PARSER my_parser IS 'Splits text into words';
270270
COMMENT ON TEXT SEARCH TEMPLATE snowball IS 'Snowball stemmer';
271271
COMMENT ON TRIGGER my_trigger ON my_table IS 'Used for RI';

‎doc/src/sgml/release-7.4.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3797,7 +3797,7 @@ DROP SCHEMA information_schema CASCADE;
37973797
</para>
37983798
<para>
37993799
This enabled <command>GRANT</command> to give other users the
3800-
ability to grant privileges ona object.
3800+
ability to grant privileges onan object.
38013801
</para>
38023802
</listitem>
38033803
</itemizedlist>

‎doc/src/sgml/release-8.2.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5883,7 +5883,7 @@
58835883
<para>
58845884
The new syntax is <link linkend="SQL-CREATEINDEX"><command>CREATE
58855885
INDEX CONCURRENTLY</></link>. The default behavior is
5886-
still to block table modification whilea index is being
5886+
still to block table modification whilean index is being
58875887
created.
58885888
</para>
58895889
</listitem>

‎doc/src/sgml/release-old.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4849,7 +4849,7 @@ New DECLARE and FETCH feature(Thomas)
48494849
libpq's internal structures now not exported(Tom)
48504850
Allow up to 8 key indexes(Bruce)
48514851
Remove ARCHIVE key word, that is no longer used(Thomas)
4852-
pg_dump -n flag to suppress quotes aroundindentifiers
4852+
pg_dump -n flag to suppress quotes aroundidentifiers
48534853
disable system columns for views(Jan)
48544854
new INET and CIDR types for network addresses(TomH, Paul)
48554855
no more double quotes in psql output
@@ -5250,7 +5250,7 @@ Support SQL92 syntax for type coercion of literal strings
52505250
(e.g. "DATETIME 'now'")(Thomas)
52515251
Add conversions for int2, int4, and OID types to and from text(Thomas)
52525252
Use shared lock when building indexes(Vadim)
5253-
Free memory allocated foran user query inside transaction block after
5253+
Free memory allocated fora user query inside transaction block after
52545254
this query is done, was turned off in &lt;= 6.2.1(Vadim)
52555255
New SQL statement CREATE PROCEDURAL LANGUAGE(Jan)
52565256
New <productname>PostgreSQL</productname> Procedural Language (PL) backend interface(Jan)
@@ -6514,7 +6514,7 @@ Incompatible changes:
65146514
New tools:
65156515
* pgperl - a Perl (4.036) interface to Postgres95
65166516
* pg_dump - a utility for dumping out a postgres database into a
6517-
script file containing query commands. The script files are ina ASCII
6517+
script file containing query commands. The script files are inan ASCII
65186518
format and can be used to reconstruct the database, even on other
65196519
machines and other architectures. (Also good for converting
65206520
a Postgres 4.2 database to Postgres95 database.)

‎doc/src/sgml/stylesheet.dsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@
546546

547547
;; By default, the part and reference title pages get wrong page
548548
;; numbers: The first title page gets roman numerals carried over from
549-
;; preface/toc -- we wantarabic numerals. We also need to make sure
549+
;; preface/toc -- we wantArabic numerals. We also need to make sure
550550
;; that page-number-restart is set of #f explicitly, because otherwise
551551
;; it will carry over from the previous component, which is not good.
552552
;;

‎doc/src/sgml/textsearch.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2425,7 +2425,7 @@ more sample word(s) : more indexed word(s)
24252425
</programlisting>
24262426

24272427
where the colon (<symbol>:</symbol>) symbol acts as a delimiter between a
2428-
aphrase and its replacement.
2428+
phrase and its replacement.
24292429
</para>
24302430

24312431
<para>

‎doc/src/sgml/xml2.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ AS t(article_id integer, author text, page_count integer, title text);
321321

322322
<para>
323323
The calling <command>SELECT</> statement doesn't necessarily have be
324-
bejust <literal>SELECT *</> &mdash; it can reference the output
324+
just <literal>SELECT *</> &mdash; it can reference the output
325325
columns by name or join them to other tables. The function produces a
326326
virtual table with which you can perform any operation you wish (e.g.
327327
aggregation, joining, sorting etc). So we could also have:

‎doc/src/sgml/xoper.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ SELECT (a + b) AS c FROM test_complex;
189189

190190
<para>
191191
Unlike commutators, a pair of unary operators could validly be marked
192-
as eachothers' negators; that would mean (A x) equals NOT (B x)
192+
as eachother's negators; that would mean (A x) equals NOT (B x)
193193
for all x, or the equivalent for right unary operators.
194194
</para>
195195

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp