aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastructures')
-rw-r--r--src/datastructures/linkedlists/sentinel-template2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/sentinel-template b/src/datastructures/linkedlists/sentinel-template
index 3decdbc..9de6019 100644
--- a/src/datastructures/linkedlists/sentinel-template
+++ b/src/datastructures/linkedlists/sentinel-template
@@ -67,7 +67,7 @@
{
this.edge = new Node(null);
this.edge.next = this.edge;
-(( with_prev )) &&
+£>(( with_prev )) &&
this.edge.previous = this.edge;
}