Fix various typos with codespell

Using 2.2.7.dev51+geb4a58fe.
This commit is contained in:
Rémi Verschelde 2023-11-11 23:01:24 +01:00
parent e38686f85b
commit ba713c80df
No known key found for this signature in database
GPG key ID: C3336907360768E1
9 changed files with 14 additions and 13 deletions

View file

@ -135,9 +135,9 @@ const GodotInputGamepads = {
}
const id = pad.id;
// Chrom* style: NAME (Vendor: xxxx Product: xxxx)
// Chrom* style: NAME (Vendor: xxxx Product: xxxx).
const exp1 = /vendor: ([0-9a-f]{4}) product: ([0-9a-f]{4})/i;
// Firefox/Safari style (safari may remove leading zeores)
// Firefox/Safari style (Safari may remove leading zeroes).
const exp2 = /^([0-9a-f]+)-([0-9a-f]+)-/i;
let vendor = '';
let product = '';