Skip to content

Commit eaed5dd

Browse files
Balki Kodarapudonnemartin
authored andcommitted
Delete duplicate does in 3 design examples (donnemartin#24)
Delete duplicate word "does" in design exercises
1 parent 5fa4136 commit eaed5dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

solutions/system_design/pastebin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ An alternative to a relational database acting as a large hash table, we could u
9595

9696
* The **Client** sends a create paste request to the **Web Server**, running as a [reverse proxy](https://github.com/donnemartin/system-design-primer#reverse-proxy-web-server)
9797
* The **Web Server** forwards the request to the **Write API** server
98-
* The **Write API** server does does the following:
98+
* The **Write API** server does the following:
9999
* Generates a unique url
100100
* Checks if the url is unique by looking at the **SQL Database** for a duplicate
101101
* If the url is not unique, it generates another url

solutions/system_design/social_graph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ We won't be able to fit all users on the same machine, we'll need to [shard](htt
104104
* The **Client** sends a request to the **Web Server**, running as a [reverse proxy](https://github.com/donnemartin/system-design-primer#reverse-proxy-web-server)
105105
* The **Web Server** forwards the request to the **Search API** server
106106
* The **Search API** server forwards the request to the **User Graph Service**
107-
* The **User Graph Service** does does the following:
107+
* The **User Graph Service** does the following:
108108
* Uses the **Lookup Service** to find the **Person Server** where the current user's info is stored
109109
* Finds the appropriate **Person Server** to retrieve the current user's list of `friend_ids`
110110
* Runs a BFS search using the current user as the `source` and the current user's `friend_ids` as the ids for each `adjacent_node`

solutions/system_design/web_crawler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ We might also choose to support a `Robots.txt` file that gives webmasters contro
213213

214214
* The **Client** sends a request to the **Web Server**, running as a [reverse proxy](https://github.com/donnemartin/system-design-primer#reverse-proxy-web-server)
215215
* The **Web Server** forwards the request to the **Query API** server
216-
* The **Query API** server does does the following:
216+
* The **Query API** server does the following:
217217
* Parses the query
218218
* Removes markup
219219
* Breaks up the text into terms

0 commit comments

Comments
 (0)