diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-07-12 08:45:34 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-07-12 08:52:21 +0200 |
commit | 166fcf4a6364769501dd8562db927abefdd310b2 (patch) | |
tree | 428c58b484fcae89f1561cb789a6e2404453da00 | |
parent | 5e60237ad1b4e2d159aec48ffd9914a633d2d6e0 (diff) | |
download | postgresql-166fcf4a6364769501dd8562db927abefdd310b2.tar.gz postgresql-166fcf4a6364769501dd8562db927abefdd310b2.zip |
doc: Make release note entries more accurate
Two tsquery-related release note entries had inaccuracies in the
before and after examples. Clean that up.
-rw-r--r-- | doc/src/sgml/release-14.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml index cfee1d48efd..ddded1985c0 100644 --- a/doc/src/sgml/release-14.sgml +++ b/doc/src/sgml/release-14.sgml @@ -108,9 +108,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> <para> Certain discarded tokens, like underscore, caused the output of these functions to produce incorrect tsquery output, e.g., both - websearch_to_tsquery('"pg_class pg"') and to_tsquery('pg_class - <-> pg') used to output '( pg & class ) <-> pg', - but now both output 'pg <-> class <-> pg'. + <literal>websearch_to_tsquery('"pg_class pg"')</literal> and <literal>to_tsquery('pg_class + <-> pg')</literal> used to output <literal>( 'pg' & 'class' ) <-> 'pg'</literal>, + but now both output <literal>'pg' <-> 'class' <-> 'pg'</literal>. </para> </listitem> @@ -130,8 +130,8 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> <para> Previously, quoted text that contained multiple adjacent discarded tokens were treated as multiple tokens, causing incorrect tsquery - output, e.g., websearch_to_tsquery('"aaa: bbb"') used to output - 'aaa <2> bbb', but now outputs 'aaa <-> bbb'. + output, e.g., <literal>websearch_to_tsquery('"aaa: bbb"')</literal> used to output + <literal>'aaa' <2> 'bbb'</literal>, but now outputs <literal>'aaa' <-> 'bbb'</literal>. </para> </listitem> |