Skip to content

Commit 7d43d95

Browse files
committed
fix: correct separator to ", "
1 parent 9f6cbb4 commit 7d43d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ Return a list of rows, each row is a vector:
426426
(string-match-p leetcode--filter-regex title))
427427
t)
428428
(if leetcode--filter-tag
429-
(let ((tags (split-string (aref row 5) ",")))
429+
(let ((tags (split-string (aref row 5) ", ")))
430430
(member leetcode--filter-tag tags))
431431
t)))
432432
rows))

0 commit comments

Comments
 (0)