|
20 | 20 |
|
21 | 21 | #include"jsquery.h" |
22 | 22 |
|
23 | | -/* |
| 23 | +/* |
24 | 24 | * Bison doesn't allocate anything that needs to live across parser calls, |
25 | 25 | * so we can easily have it use palloc instead of malloc. This prevents |
26 | 26 | * memory leaks if we error out during parsing. Note this only works with |
@@ -288,7 +288,7 @@ expr: |
288 | 288 | |pathHINT_Pright_expr{$3->hint =$2;$$ = makeItemList(lappend($1,$3)); } |
289 | 289 | |NOT_Pexpr {$$ = makeItemUnary(jqiNot,$2); } |
290 | 290 | /* |
291 | | - * In next two lines NOT_P is apatch actually, not a an |
| 291 | + * In next two lines NOT_P is apath actually, not a an |
292 | 292 | * logical expression. |
293 | 293 | */ |
294 | 294 | |NOT_PHINT_Pright_expr{$3->hint =$2;$$ = makeItemList(lappend(lappend(NIL, makeItemKey(&$1)),$3)); } |
|