diff --git a/http-web-services.html b/http-web-services.html
index 07d9d6a..18a0a7e 100755
--- a/http-web-services.html
+++ b/http-web-services.html
@@ -557,7 +557,7 @@ reply: 'HTTP/1.1 200 OK'
>>> len(content) ③
6657
-- Instead of the feed, this time we’re going to download the site’s home page, which is HTML. Since this is the first time you’lve ever requested this page,
httplib2 has little to work with, and it sends out a minimum of headers with the request.
+ - Instead of the feed, this time we’re going to download the site’s home page, which is HTML. Since this is the first time you’ve ever requested this page,
httplib2 has little to work with, and it sends out a minimum of headers with the request.
- The response contains a multitude of HTTP headers… but no caching information. However, it does include both an
ETag and Last-Modified header.
- At the time I constructed this example, this page was 6657 bytes. It’s probably changed since then, but don’t worry about it.