Received: from malur.postgresql.org ([2a02:16a8:dc51::56]) by arkaria.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1fVBOj-0005Xi-99 for pgsql-docs@arkaria.postgresql.org; Tue, 19 Jun 2018 07:49:54 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.89) (envelope-from ) id 1fVBOi-0007yR-8m for pgsql-docs@arkaria.postgresql.org; Tue, 19 Jun 2018 07:49:52 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1fVBLO-0004pu-5b for pgsql-docs@lists.postgresql.org; Tue, 19 Jun 2018 07:46:26 +0000 Received: from mail.postgrespro.ru ([93.174.131.138]) by makus.postgresql.org with esmtp (Exim 4.89) (envelope-from ) id 1fVBLJ-0002dM-IZ for pgsql-docs@lists.postgresql.org; Tue, 19 Jun 2018 07:46:24 +0000 Received: from localhost (localhost [127.0.0.1]) by mail.postgrespro.ru (Postfix) with ESMTP id 2907D21C1F6D for ; Tue, 19 Jun 2018 10:46:19 +0300 (MSK) X-Virus-Scanned: Debian amavisd-new at postgrespro.ru X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=x tagged_above=-99 required=4 WHITELISTED tests=[] autolearn=unavailable Received: from [192.168.27.113] (gw.postgrespro.ru [93.174.131.141]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mail.postgrespro.ru (Postfix) with ESMTPSA id EC6BA21C1F4F for ; Tue, 19 Jun 2018 10:46:18 +0300 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=postgrespro.ru; s=mail; t=1529394378; bh=FyZlyOa2HMo2Ip5uxoiuPijHqY1uj1c/GynN/7F08zs=; h=To:From:Subject:Date; b=KakgtI9tZiIsqvdf1TCKgL6j786BBsYJOeQ6c4J/adauMvF2QuP4gf+wPPBxVsy/s 1PWxy0UDjPXyiBnZ8fRk3el8IxehaVY3LO/Xdrjs684T03Vy/RTb10/q+eZ9VltLHb BCO+pVUunzjJ5X3MtJIV3rMYdsRYnunC83UXqBLs= To: pgsql-docs@lists.postgresql.org From: Liudmila Mantrova Subject: Misc typos in documentation Message-ID: <275fc450-bbc9-a715-04bb-3b7104fecfcd@postgrespro.ru> Date: Tue, 19 Jun 2018 10:46:17 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------7FD312BDD80C1DE136CC6E32" Content-Language: en-US List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Precedence: bulk This is a multi-part message in MIME format. --------------7FD312BDD80C1DE136CC6E32 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit 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 --------------7FD312BDD80C1DE136CC6E32 Content-Type: text/x-patch; name="doc-typos.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="doc-typos.patch" 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 k-th dimension, n = 2 * k means upper bound of k-th dimension. Negative - n denotes inversed value of corresponding + n denotes the inverse value of the corresponding positive coordinate. This operator is designed for KNN-GiST support. 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. At the same time, strict_word_similarity(text, text) - 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, strict_word_similarity(text, text) would select the - extent of single word 'words', whose set of trigrams is - {" w"," wo","wor","ord","rds","ds "} + extent of a single word 'words', whose set of trigrams is + {" w"," wo","wor","ord","rds","ds "}. # 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 options d - - substraction + subtraction 3 - 2.0 1.0 --------------7FD312BDD80C1DE136CC6E32 Content-Type: text/x-patch; name="rn-typos.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="rn-typos.patch" 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 --> - Allow vacuum to avoid unnecesary index scans (Masahiko Sawada, + Allow vacuum to avoid unnecessary index scans (Masahiko Sawada, Alexander Korotkov) @@ -1594,7 +1594,7 @@ same commits as above --> - Allow replication slots to be advanced programatically, rather + Allow replication slots to be advanced programmatically, rather than be consumed by subscribers (Petr Jelinek) @@ -1704,7 +1704,7 @@ same commits as above Allow ALTER INDEX to set statistics-gathering - targets for expression indexes (Alexander Korotkov, Adrien nayrat) + targets for expression indexes (Alexander Korotkov, Adrien Nayrat) --------------7FD312BDD80C1DE136CC6E32--