diff options
Diffstat (limited to 'src/tutorial/funcs_new.c')
-rw-r--r-- | src/tutorial/funcs_new.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c index e548b85ee41..9c63abaf14e 100644 --- a/src/tutorial/funcs_new.c +++ b/src/tutorial/funcs_new.c @@ -125,8 +125,7 @@ c_overpaid(PG_FUNCTION_ARGS) PG_RETURN_BOOL(false); /* - * Alternatively, we might prefer to do PG_RETURN_NULL() for null - * salary + * Alternatively, we might prefer to do PG_RETURN_NULL() for null salary */ PG_RETURN_BOOL(salary > limit); |