From 368f3e3edc692331bf5362372ecaa8e1836558d4 Mon Sep 17 00:00:00 2001 From: James Nylen Date: Tue, 23 Dec 2014 13:19:10 -0600 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ad37cdce..877a1b361 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Request is designed to be the simplest way possible to make http calls. It suppo var request = require('request'); request('http://www.google.com', function (error, response, body) { if (!error && response.statusCode == 200) { - console.log(body) // Prtint the google web page. + console.log(body) // Show the HTML for the Google homepage. } }) ```