DEV: correct argument names for addGlobalNotice (#14582)

This commit is contained in:
Joffrey JAFFEUX 2021-10-12 17:01:54 +02:00 committed by GitHub
parent 228264d17c
commit be7dcf694e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1243,8 +1243,8 @@ class PluginApi {
* api.addGlobalNotice("text", "foo", { html: "<p>bar</p>" }) * api.addGlobalNotice("text", "foo", { html: "<p>bar</p>" })
* *
**/ **/
addGlobalNotice(id, text, options) { addGlobalNotice(text, id, options) {
addGlobalNotice(id, text, options); addGlobalNotice(text, id, options);
} }
/** /**