From fd55bd2e5a8ec9851978d88973fcd50be98ae4e1 Mon Sep 17 00:00:00 2001 From: Diego Asterio de Zaballa Date: Wed, 29 May 2024 18:06:09 +0200 Subject: [PATCH] Update README.md Fixing typo --- solutions/system_design/web_crawler/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/system_design/web_crawler/README.md b/solutions/system_design/web_crawler/README.md index e6e79ad224..eac0311e2a 100644 --- a/solutions/system_design/web_crawler/README.md +++ b/solutions/system_design/web_crawler/README.md @@ -115,7 +115,7 @@ class PagesDataStore(object): """Remove the given link from `links_to_crawl`.""" ... - def reduce_priority_link_to_crawl(self, url) + def reduce_priority_link_to_crawl(self, url): """Reduce the priority of a link in `links_to_crawl` to avoid cycles.""" ...