Skip to content

Commit a638283

Browse files
committed
docs: update task titles
1 parent b2c6d16 commit a638283

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

069-infinite scroll posts/script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function showPosts() {
3535
});
3636
}
3737

38-
// Refactor showLoading to Prevent Race Conditions
38+
// Refactor Loading Logic to Prevent Race Conditions
3939
async function fetchAndShowPosts() {
4040
page++;
4141
await showPosts();
@@ -49,7 +49,7 @@ async function showLoading() {
4949
isLoading = false;
5050
}
5151

52-
// Debounce the Filter Input
52+
// Debounce the Filter Input for Better Performance
5353
function debounce(functionToDebounce, delay = 300) {
5454
let timeoutId;
5555
return (...args) => {

0 commit comments

Comments
 (0)