diff options
author | Michael Paquier | 2024-09-03 05:49:04 +0000 |
---|---|---|
committer | Michael Paquier | 2024-09-03 05:49:04 +0000 |
commit | 4236825197e8b7f26f8fd2ce0ac287a696e7264e (patch) | |
tree | 14629d4520f55b175c54667547e6feb648e92f52 /src/backend/executor/execExprInterp.c | |
parent | c7cd2d6ed082a4638172acece33ed6f36da96263 (diff) |
Fix typos and grammar in code comments and docs
Author: Alexander Lakhin
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/executor/execExprInterp.c')
-rw-r--r-- | src/backend/executor/execExprInterp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execExprInterp.c b/src/backend/executor/execExprInterp.c index 77394e76c37..a6c47f61e0d 100644 --- a/src/backend/executor/execExprInterp.c +++ b/src/backend/executor/execExprInterp.c @@ -1101,7 +1101,7 @@ ExecInterpExpr(ExprState *state, ExprContext *econtext, bool *isnull) EEO_CASE(EEOP_PARAM_SET) { - /* out of line, unlikely to matter performancewise */ + /* out of line, unlikely to matter performance-wise */ ExecEvalParamSet(state, op, econtext); EEO_NEXT(); } @@ -4762,7 +4762,7 @@ ExecEvalJsonCoercionFinish(ExprState *state, ExprEvalStep *op) if (SOFT_ERROR_OCCURRED(&jsestate->escontext)) { /* - * jsestate->error or jsetate->empty being set means that the error + * jsestate->error or jsestate->empty being set means that the error * occurred when coercing the JsonBehavior value. Throw the error in * that case with the actual coercion error message shown in the * DETAIL part. |