1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-22 02:52:08 +03:00

Fix typos.

Etsuro Fujita
This commit is contained in:
Robert Haas
2014-10-20 10:23:40 -04:00
parent 49d182e61e
commit 0f565c0743
4 changed files with 6 additions and 6 deletions

View File

@ -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.
*