1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 15:02:26 +01:00

Fix beta string matching in :help versions.

This commit is contained in:
Doug Kearns
2015-12-21 02:24:07 +11:00
parent 5bb2e31150
commit a19a8653c1

View File

@@ -131,7 +131,7 @@ var Help = Module("Help", {
let matchBetas = util.regexp(/\[((?:b|rc)\d)\]/, "gx");
let betas = Array.from(betas.iterate(NEWS),
let betas = Array.from(matchBetas.iterate(NEWS),
match => match[1]);
let beta = betas.sort().pop();