From 7b00f17ae686f687c839f387b2f40ba8bc234d34 Mon Sep 17 00:00:00 2001 From: Ilya Kaznacheev Date: Sun, 29 Aug 2021 20:00:30 +0300 Subject: [PATCH] Fix code example 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 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.""" ...