diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-10-20 10:23:40 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-10-20 10:23:40 -0400 |
commit | 0f565c074311d202f4524d1fd104b28c5a6adaf2 (patch) | |
tree | 7407806e48f0e069778487c8ababfa991795d80d /src/backend/utils/adt/tsquery.c | |
parent | 49d182e61ebca00762531718b3bafa9107ccee17 (diff) | |
download | postgresql-0f565c074311d202f4524d1fd104b28c5a6adaf2.tar.gz postgresql-0f565c074311d202f4524d1fd104b28c5a6adaf2.zip |
Fix typos.
Etsuro Fujita
Diffstat (limited to 'src/backend/utils/adt/tsquery.c')
-rw-r--r-- | src/backend/utils/adt/tsquery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/tsquery.c b/src/backend/utils/adt/tsquery.c index b973a534ddb..c8011a8ea92 100644 --- a/src/backend/utils/adt/tsquery.c +++ b/src/backend/utils/adt/tsquery.c @@ -456,10 +456,10 @@ findoprnd(QueryItem *ptr, int size) /* - * Each value (operand) in the query is be passed to pushval. pushval can + * Each value (operand) in the query is passed to pushval. pushval can * transform the simple value to an arbitrarily complex expression using * pushValue and pushOperator. It must push a single value with pushValue, - * a complete expression with all operands, or a a stopword placeholder + * a complete expression with all operands, or a stopword placeholder * with pushStop, otherwise the prefix notation representation will be broken, * having an operator with no operand. * |