From 9168a2ddbc58313fc6949c21137cf4e01e6bef79 Mon Sep 17 00:00:00 2001 From: drake01 Date: Mon, 4 Aug 2014 18:08:38 +0530 Subject: [PATCH] Minor fixes in documentation. Hello World commit --- README.md | 2 +- app.json | 2 +- examples/wot.js | 2 +- index.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c023de6..1a36f2a 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This repo is a sample extractor that you can fork to implement your own. We will Some ideas for extractors include: - an extractor that checks whether the given web app is available as a native mobile app in a store such as Google Play Market -- an extractor that identifies which infrastructure provider the web app uses, e.g. Amazaon, Azure, App Engine etc. +- an extractor that identifies which infrastructure provider the web app uses, e.g. Amazon, Azure, App Engine etc. - an extractor that uses the Twitter API to list all popular tweets about the app For more ideas, check out the [StartHQ Roadmap](http://starthq.uservoice.com). diff --git a/app.json b/app.json index b127468..97ad27d 100644 --- a/app.json +++ b/app.json @@ -33,4 +33,4 @@ "been", "working" ] -} \ No newline at end of file +} diff --git a/examples/wot.js b/examples/wot.js index 312a216..1ebc798 100644 --- a/examples/wot.js +++ b/examples/wot.js @@ -34,4 +34,4 @@ var extract = module.exports = function(app, key) { if (require.main === module) { console.log(extract({url:process.argv[2]}, 'Your API key')); -} \ No newline at end of file +} diff --git a/index.js b/index.js index 1a55cba..3bf0b38 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,4 @@ -// example extractor that returns the number bytes in the app's index page +// example extractor that returns the number of bytes in the app's index page var HttpClient = require("httpclient").HttpClient; var extract = module.exports = function(app) { @@ -7,4 +7,4 @@ var extract = module.exports = function(app) { if (require.main === module) { console.log(extract(require('./app.json'))); -} \ No newline at end of file +}