Merge pull request #13703 from eltociear/patch-4

XFA - Fix typo in factory.js
This commit is contained in:
calixteman 2021-07-09 20:12:55 +02:00 committed by GitHub
commit caaf77375f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ class XFAFactory {
this.dataHandler = new DataHandler(this.root, binder.getData());
this.form[$globalData].template = this.form;
} catch (e) {
warn(`XFA - an error occured during parsing and binding: ${e}`);
warn(`XFA - an error occurred during parsing and binding: ${e}`);
}
}
@ -46,7 +46,7 @@ class XFAFactory {
return [0, 0, parseInt(width), parseInt(height)];
});
} catch (e) {
warn(`XFA - an error occured during layout: ${e}`);
warn(`XFA - an error occurred during layout: ${e}`);
}
}