Update article.md

This commit is contained in:
kingcyrus89 2018-09-30 23:47:39 -06:00 committed by GitHub
parent 880659f3c1
commit 44a511e2d9
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) return fetch(url)
.then(response => response.text()) .then(response => response.text())
.then(text => { .then(text => {
cache[url] = text; cache.set(url,text);
return text; return text;
}); });
} }