Skip to content

Commit a856e73

Browse files
committed
Remove non-breaking spaces.
1 parent b23f77c commit a856e73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/sparql.jison

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,8 @@ Update1
518518
| 'INSERTDATA' QuadPattern -> { updateType: 'insert', insert: $2 }
519519
| 'DELETEDATA' QuadPattern -> { updateType: 'delete', delete: $2 }
520520
| 'DELETEWHERE' QuadPattern -> { updateType: 'deletewhere', delete: $2 }
521-
| WithClause? InsertClause DeleteClause? UsingClause* 'WHERE' GroupGraphPattern -> extend({ updateType: 'insertdelete' }, $1, { insert: $2 || [] }, { delete: $3 || [] }, groupDatasets($4), { where: $6.patterns })
522-
| WithClause? DeleteClause InsertClause? UsingClause* 'WHERE' GroupGraphPattern -> extend({ updateType: 'insertdelete' }, $1, { delete: $2 || [] }, { insert: $3 || [] }, groupDatasets($4), { where: $6.patterns })
521+
| WithClause? InsertClause DeleteClause? UsingClause* 'WHERE' GroupGraphPattern -> extend({ updateType: 'insertdelete' }, $1, { insert: $2 || [] }, { delete: $3 || [] }, groupDatasets($4), { where: $6.patterns })
522+
| WithClause? DeleteClause InsertClause? UsingClause* 'WHERE' GroupGraphPattern -> extend({ updateType: 'insertdelete' }, $1, { delete: $2 || [] }, { insert: $3 || [] }, groupDatasets($4), { where: $6.patterns })
523523
;
524524
DeleteClause
525525
: 'DELETE' QuadPattern -> $2
@@ -550,7 +550,7 @@ QuadPattern
550550
QuadsNotTriples
551551
: 'GRAPH' (VAR | iri) '{' TriplesTemplate? '}' '.'? TriplesTemplate?
552552
{
553-
var graph = extend($4 || { triples: [] }, { type: 'graph', name: toVar($2) });
553+
var graph = extend($4 || { triples: [] }, { type: 'graph', name: toVar($2) });
554554
$$ = $7 ? [graph, $7] : [graph];
555555
}
556556
;

0 commit comments

Comments
 (0)