From f084e6f177b344740d52c912d76764836dcfd94e Mon Sep 17 00:00:00 2001 From: Pedro de Brito Date: Tue, 24 Apr 2018 22:44:10 +0200 Subject: [PATCH] Fix typo --- http-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-server.md b/http-server.md index d86bcd879..fa5e97048 100644 --- a/http-server.md +++ b/http-server.md @@ -60,7 +60,7 @@ type Handler interface { } ``` -It's has one function which expects two arguments, the first being where we _write our response_ and the second being the HTTP request that was sent to us. +It has one function which expects two arguments, the first being where we _write our response_ and the second being the HTTP request that was sent to us. Let's write a test for a function `PlayerServer` that takes in those two arguments. The request sent in will be to get a player's score, which we expect to be `"20"`.