Update article.md

there was a typo
This commit is contained in:
ofcRS 2019-03-17 13:29:04 +04:00 committed by GitHub
parent 440f4086d4
commit b1db8c0754
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ let loadScriptPromise = function(src) {
return new Promise((resolve, reject) => {
loadScript(src, (err, script) => {
if (err) reject(err)
elsee resolve(script);
else resolve(script);
});
})
}