Merge pull request #530 from kingcyrus89/patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2018-10-02 14:08:25 +03:00 committed by GitHub
commit e2d3f1e2f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ function loadCached(url) {
return fetch(url)
.then(response => response.text())
.then(text => {
cache[url] = text;
cache.set(url,text);
return text;
});
}