Skip to content

Commit 7cc5b42

Browse files
committed
Remove stray comment
1 parent da294f7 commit 7cc5b42

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

contents/graham_scan/code/elisp/graham-scan.el

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Adapted from dash.el."
1010

1111
(defun nthrev (n lst)
1212
"Return the Nth element of LST from the end."
13-
;; (car (nthcdr n (reverse lst)))
1413
(nth (- (length lst) (1+ n)) lst))
1514

1615
(defun is-ccw (a b c)

0 commit comments

Comments
 (0)