From de0394897a57284ef12be5df0cb8368972a753c7 Mon Sep 17 00:00:00 2001 From: 41337 <88632118+41337@users.noreply.github.com> Date: Thu, 18 Aug 2022 17:33:35 -0300 Subject: [PATCH] Update README.md --- 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 e6e79ad2..eac0311e 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.""" ...