XFA - Fix typo in factory.js

occured -> occurred
This commit is contained in:
Ikko Ashimine 2021-07-09 21:51:37 +09:00 committed by GitHub
parent c33bf0b5e8
commit dba30eac7b
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}`);
}
}