public inbox for [email protected]  
help / color / mirror / Atom feed
Misc typos in documentation
6+ messages / 3 participants
[nested] [flat]

* Misc typos in documentation
@ 2018-06-19 07:46 Liudmila Mantrova <[email protected]>
  2018-06-20 14:04 ` Re: Misc typos in documentation Magnus Hagander <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Liudmila Mantrova @ 2018-06-19 07:46 UTC (permalink / raw)
  To: [email protected]

Hi,

Please consider these small patches that fix a couple of typos in 
documentation.

I have split them in two just in case rn-typos.patch conflicts with any 
current work on release-11.sgml, which seems to be going on in more than 
one thread. I'll appreciate your feedback if it should have been done 
differently.

-- 
Liudmila Mantrova
Technical writer at Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company



Attachments:

  [text/x-patch] doc-typos.patch (2.4K, 2-doc-typos.patch)
  download | inline diff:
diff --git a/doc/src/sgml/cube.sgml b/doc/src/sgml/cube.sgml
index e010305..c6e5862 100644
--- a/doc/src/sgml/cube.sgml
+++ b/doc/src/sgml/cube.sgml
@@ -190,7 +190,7 @@
         n = 2 * k - 1 means lower bound of <replaceable>k</replaceable>-th
         dimension, n = 2 * k means upper bound of
         <replaceable>k</replaceable>-th dimension.  Negative
-        <replaceable>n</replaceable> denotes inversed value of corresponding
+        <replaceable>n</replaceable> denotes the inverse value of the corresponding
         positive coordinate.  This operator is designed for KNN-GiST support.
       </entry>
      </row>
diff --git a/doc/src/sgml/pgtrgm.sgml b/doc/src/sgml/pgtrgm.sgml
index 42e2426..83b0033 100644
--- a/doc/src/sgml/pgtrgm.sgml
+++ b/doc/src/sgml/pgtrgm.sgml
@@ -168,15 +168,15 @@
    greatest similarity between the first string and any substring of the second
    string.  However, this function does not add padding to the boundaries of
    the extent.  Thus, the number of additional characters present in the
-   second string is not considered, except for the mismatched word boundry.
+   second string is not considered, except for the mismatched word boundaries.
   </para>
 
   <para>
    At the same time, <function>strict_word_similarity(text, text)</function>
-   selects extent of words in the second string.  In the example above,
+   selects an extent of words in the second string.  In the example above,
    <function>strict_word_similarity(text, text)</function> would select the
-   extent of single word <literal>'words'</literal>, whose set of trigrams is
-   <literal>{"  w"," wo","wor","ord","rds","ds "}</literal>
+   extent of a single word <literal>'words'</literal>, whose set of trigrams is
+   <literal>{"  w"," wo","wor","ord","rds","ds "}</literal>.
 
 <programlisting>
 # SELECT strict_word_similarity('word', 'two words'), similarity('word', 'words');
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml
index 7bd01a2..7f92c77 100644
--- a/doc/src/sgml/ref/pgbench.sgml
+++ b/doc/src/sgml/ref/pgbench.sgml
@@ -1215,7 +1215,7 @@ pgbench <optional> <replaceable>options</replaceable> </optional> <replaceable>d
      </row>
      <row>
       <entry><literal>-</literal></entry>
-      <entry>substraction</entry>
+      <entry>subtraction</entry>
       <entry><literal>3 - 2.0</literal></entry>
       <entry><literal>1.0</literal></entry>
      </row>


  [text/x-patch] rn-typos.patch (1.0K, 3-rn-typos.patch)
  download | inline diff:
diff --git a/doc/src/sgml/release-11.sgml b/doc/src/sgml/release-11.sgml
index 7599c6f..f2bddb5 100644
--- a/doc/src/sgml/release-11.sgml
+++ b/doc/src/sgml/release-11.sgml
@@ -1083,7 +1083,7 @@ same commits as above
 -->
 
        <para>
-        Allow vacuum to avoid unnecesary index scans (Masahiko Sawada,
+        Allow vacuum to avoid unnecessary index scans (Masahiko Sawada,
         Alexander Korotkov)
        </para>
       </listitem>
@@ -1594,7 +1594,7 @@ same commits as above
 -->
 
        <para>
-        Allow replication slots to be advanced programatically, rather
+        Allow replication slots to be advanced programmatically, rather
         than be consumed by subscribers (Petr Jelinek)
        </para>
 
@@ -1704,7 +1704,7 @@ same commits as above
 
        <para>
         Allow <command>ALTER INDEX</command> to set statistics-gathering
-        targets for expression indexes (Alexander Korotkov, Adrien nayrat)
+        targets for expression indexes (Alexander Korotkov, Adrien Nayrat)
        </para>
 
        <para>


^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: Misc typos in documentation
  2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
@ 2018-06-20 14:04 ` Magnus Hagander <[email protected]>
  2018-08-16 08:25   ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Magnus Hagander @ 2018-06-20 14:04 UTC (permalink / raw)
  To: Liudmila Mantrova <[email protected]>; +Cc: [email protected]

On Tue, Jun 19, 2018 at 9:46 AM, Liudmila Mantrova <
[email protected]> wrote:

> Hi,
>
> Please consider these small patches that fix a couple of typos in
> documentation.
>
> I have split them in two just in case rn-typos.patch conflicts with any
> current work on release-11.sgml, which seems to be going on in more than
> one thread. I'll appreciate your feedback if it should have been done
> differently.


Hi!

These all look good to me. Thanks, applied!

-- 
 Magnus Hagander
 Me: https://www.hagander.net/ <http://www.hagander.net/;
 Work: https://www.redpill-linpro.com/ <http://www.redpill-linpro.com/;


^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: Misc typos in documentation
  2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-06-20 14:04 ` Re: Misc typos in documentation Magnus Hagander <[email protected]>
@ 2018-08-16 08:25   ` Liudmila Mantrova <[email protected]>
  2018-08-25 19:04     ` Re: Misc typos in documentation Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Liudmila Mantrova @ 2018-08-16 08:25 UTC (permalink / raw)
  To: [email protected]


On 06/20/2018 05:04 PM, Magnus Hagander wrote:
>
>
> On Tue, Jun 19, 2018 at 9:46 AM, Liudmila Mantrova 
> <[email protected] <mailto:[email protected]>> wrote:
>
>     Hi,
>
>     Please consider these small patches that fix a couple of typos in
>     documentation.
>
>     I have split them in two just in case rn-typos.patch conflicts
>     with any current work on release-11.sgml, which seems to be going
>     on in more than one thread. I'll appreciate your feedback if it
>     should have been done differently.
>
>
> Hi!
>
> These all look good to me. Thanks, applied!
>
> -- 
>  Magnus Hagander
>  Me: https://www.hagander.net/ <http://www.hagander.net/;
>  Work: https://www.redpill-linpro.com/ <http://www.redpill-linpro.com/;

I have bumped into a couple of similar typos in 9.6 and 10 - the patch 
based on REL9_6_STABLE is attached.

-- 
Liudmila Mantrova
Technical writer at Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company



Attachments:

  [text/x-patch] pgtrgm-typos.patch (1.1K, 3-pgtrgm-typos.patch)
  download | inline diff:
diff --git a/doc/src/sgml/pgtrgm.sgml b/doc/src/sgml/pgtrgm.sgml
index 350da77..1de337a 100644
--- a/doc/src/sgml/pgtrgm.sgml
+++ b/doc/src/sgml/pgtrgm.sgml
@@ -143,7 +143,7 @@
    In the first string, the set of trigrams is
    <literal>{"  w"," wo","ord","wor","rd "}</literal>.
    In the second string, the ordered set of trigrams is
-   <literal>{"  t"," tw",two,"wo ","  w"," wo","wor","ord","rds", ds "}</literal>.
+   <literal>{"  t"," tw",two,"wo ","  w"," wo","wor","ord","rds","ds "}</literal>.
    The most similar extent of an ordered set of trigrams in the second string
    is <literal>{"  w"," wo","wor","ord"}</literal>, and the similarity is
    <literal>0.8</literal>.
@@ -154,7 +154,7 @@
    greatest similarity between the first string and any substring of the second
    string.  However, this function does not add padding to the boundaries of
    the extent.  Thus, the number of additional characters present in the
-   second string is not considered, except for the mismatched word boundry.
+   second string is not considered, except for the mismatched word boundaries.
   </para>
 
   <table id="pgtrgm-op-table">


^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: Misc typos in documentation
  2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-06-20 14:04 ` Re: Misc typos in documentation Magnus Hagander <[email protected]>
  2018-08-16 08:25   ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
@ 2018-08-25 19:04     ` Bruce Momjian <[email protected]>
  2018-09-06 15:45       ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Bruce Momjian @ 2018-08-25 19:04 UTC (permalink / raw)
  To: Liudmila Mantrova <[email protected]>; +Cc: [email protected]

On Thu, Aug 16, 2018 at 11:25:25AM +0300, Liudmila Mantrova wrote:
> On 06/20/2018 05:04 PM, Magnus Hagander wrote:
>         I have split them in two just in case rn-typos.patch conflicts with any
>         current work on release-11.sgml, which seems to be going on in more
>         than one thread. I'll appreciate your feedback if it should have been
>         done differently.
> 
> I have bumped into a couple of similar typos in 9.6 and 10 - the patch based on
> REL9_6_STABLE is attached.

I have made the adjustments to 9.6 and 10 as you suggested.  I added
quoting to "two" to match other releases:

	https://git.postgresql.org/pg/commitdiff/993b5a78adff29fc58e7449cab98bb865b77c663

Thanks.

-- 
  Bruce Momjian  <[email protected]>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +




^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: Misc typos in documentation
  2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-06-20 14:04 ` Re: Misc typos in documentation Magnus Hagander <[email protected]>
  2018-08-16 08:25   ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-08-25 19:04     ` Re: Misc typos in documentation Bruce Momjian <[email protected]>
@ 2018-09-06 15:45       ` Liudmila Mantrova <[email protected]>
  2018-09-07 00:43         ` Re: Misc typos in documentation Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Liudmila Mantrova @ 2018-09-06 15:45 UTC (permalink / raw)
  To: Bruce Momjian <[email protected]>; +Cc: [email protected]


On 08/25/2018 10:04 PM, Bruce Momjian wrote:
> On Thu, Aug 16, 2018 at 11:25:25AM +0300, Liudmila Mantrova wrote:
>> On 06/20/2018 05:04 PM, Magnus Hagander wrote:
>>          I have split them in two just in case rn-typos.patch conflicts with any
>>          current work on release-11.sgml, which seems to be going on in more
>>          than one thread. I'll appreciate your feedback if it should have been
>>          done differently.
>>
>> I have bumped into a couple of similar typos in 9.6 and 10 - the patch based on
>> REL9_6_STABLE is attached.
> I have made the adjustments to 9.6 and 10 as you suggested.  I added
> quoting to "two" to match other releases:
>
> 	https://git.postgresql.org/pg/commitdiff/993b5a78adff29fc58e7449cab98bb865b77c663
>
> Thanks.
>
Thank you, Bruce!

I totally missed those quotes (and your response).
I've just noticed your recent commit, and looks like the typo to be 
fixed ("boundries") managed to escape somehow.
Assuming it's not an alternative spelling I'm unaware of, I'm attaching 
a smaller version of the patch (based on the current state of 
REL_10_STABLE).

-- 
Liudmila Mantrova
Technical writer at Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company



Attachments:

  [text/x-patch] pgtrgm-typo.diff (614B, 2-pgtrgm-typo.diff)
  download | inline diff:
diff --git a/doc/src/sgml/pgtrgm.sgml b/doc/src/sgml/pgtrgm.sgml
index 8e50f79..edc0813 100644
--- a/doc/src/sgml/pgtrgm.sgml
+++ b/doc/src/sgml/pgtrgm.sgml
@@ -154,7 +154,7 @@
    greatest similarity between the first string and any substring of the second
    string.  However, this function does not add padding to the boundaries of
    the extent.  Thus, the number of additional characters present in the
-   second string is not considered, except for the mismatched word boundries.
+   second string is not considered, except for the mismatched word boundaries.
   </para>
 
   <table id="pgtrgm-op-table">


^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: Misc typos in documentation
  2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-06-20 14:04 ` Re: Misc typos in documentation Magnus Hagander <[email protected]>
  2018-08-16 08:25   ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
  2018-08-25 19:04     ` Re: Misc typos in documentation Bruce Momjian <[email protected]>
  2018-09-06 15:45       ` Re: Misc typos in documentation Liudmila Mantrova <[email protected]>
@ 2018-09-07 00:43         ` Bruce Momjian <[email protected]>
  0 siblings, 0 replies; 6+ messages in thread

From: Bruce Momjian @ 2018-09-07 00:43 UTC (permalink / raw)
  To: Liudmila Mantrova <[email protected]>; +Cc: [email protected]

On Thu, Sep  6, 2018 at 06:45:29PM +0300, Liudmila Mantrova wrote:
> 
> On 08/25/2018 10:04 PM, Bruce Momjian wrote:
> >On Thu, Aug 16, 2018 at 11:25:25AM +0300, Liudmila Mantrova wrote:
> >>On 06/20/2018 05:04 PM, Magnus Hagander wrote:
> >>         I have split them in two just in case rn-typos.patch conflicts with any
> >>         current work on release-11.sgml, which seems to be going on in more
> >>         than one thread. I'll appreciate your feedback if it should have been
> >>         done differently.
> >>
> >>I have bumped into a couple of similar typos in 9.6 and 10 - the patch based on
> >>REL9_6_STABLE is attached.
> >I have made the adjustments to 9.6 and 10 as you suggested.  I added
> >quoting to "two" to match other releases:
> >
> >	https://git.postgresql.org/pg/commitdiff/993b5a78adff29fc58e7449cab98bb865b77c663
> >
> >Thanks.
> >
> Thank you, Bruce!
> 
> I totally missed those quotes (and your response).
> I've just noticed your recent commit, and looks like the typo to be fixed
> ("boundries") managed to escape somehow.
> Assuming it's not an alternative spelling I'm unaware of, I'm attaching a
> smaller version of the patch (based on the current state of REL_10_STABLE).

Oh, yes, I missed that.   Applied to PG 9.6 and 10, which is where they
were needed.  Thanks.

-- 
  Bruce Momjian  <[email protected]>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +





^ permalink  raw  reply  [nested|flat] 6+ messages in thread


end of thread, other threads:[~2018-09-07 00:43 UTC | newest]

Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2018-06-19 07:46 Misc typos in documentation Liudmila Mantrova <[email protected]>
2018-06-20 14:04 ` Magnus Hagander <[email protected]>
2018-08-16 08:25   ` Liudmila Mantrova <[email protected]>
2018-08-25 19:04     ` Bruce Momjian <[email protected]>
2018-09-06 15:45       ` Liudmila Mantrova <[email protected]>
2018-09-07 00:43         ` Bruce Momjian <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox