diff options
| -rw-r--r-- | content_scripts/link_hints.coffee | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index cf8d40c0..b4b63b1f 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -339,8 +339,7 @@ class LinkHintsMode        # Fill in the markers' rects, if necessary.        marker.markerRect ?= marker.getClientRects()[0] for marker in localHintMarkers -      # Calculate the overlapping groups of hints.  This is O(n^2) in the best case and O(n^3) in the worst -      # case. +      # Calculate the overlapping groups of hints.  We call each group a "stack".  This is O(n^2).        stacks = []        for marker in localHintMarkers          stackForThisMarker = null | 
