mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 23:17:59 +01:00
Fix a few more comment typos.
This commit is contained in:
@@ -180,7 +180,7 @@ const Hints = Module("hints", {
|
||||
let leftBound = Infinity;
|
||||
let topBound = Infinity;
|
||||
|
||||
// First find the top-left corner of the bounding rectangle (offset from image topleft can be noticably suboptimal)
|
||||
// First find the top-left corner of the bounding rectangle (offset from image topleft can be noticeably suboptimal)
|
||||
for (let i = 0; i < coords.length; i += 2) {
|
||||
leftBound = Math.min(coords[i], leftBound);
|
||||
topBound = Math.min(coords[i + 1], topBound);
|
||||
|
||||
Reference in New Issue
Block a user