aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-23 11:00:26 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-23 11:00:26 +0100
commitf82bd032a41b1c2171fc47bb76c3c51c3439ccd4 (patch)
treef4614b6121ab11ba9fb19508f2ed60ccb46d4b90
parentm (diff)
downloadalgorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.gz
algorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.bz2
algorithms-and-data-structures-f82bd032a41b1c2171fc47bb76c3c51c3439ccd4.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-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;
}