From 4dfef55e6a18908319773323a79a2013f4e60d46 Mon Sep 17 00:00:00 2001 From: Kartikay Jainwal Date: Sat, 21 Jan 2023 16:20:19 +0000 Subject: [PATCH] Update Typo in code snippet Added missing : in function declaration. --- 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.""" ...