diff options
Diffstat (limited to 'src/datastructures/linkedlists')
-rw-r--r-- | src/datastructures/linkedlists/sentinel-template | 2 |
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; } |