From 48033df3e440e5d8a0a70b4f67a68bc7c67d5e74 Mon Sep 17 00:00:00 2001 From: josh coffman Date: Sun, 23 Mar 2014 19:38:03 -0700 Subject: [PATCH] renamed 'OAuth' -> 'oauth' to be linux friendly in the readme --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 9f0ce217..74237cda 100644 --- a/Readme.md +++ b/Readme.md @@ -22,7 +22,7 @@ To run examples/tests insall Mocha `$ npm install -g mocha` and run `$ mocha you ```javascript describe('OAuth1.0',function(){ - var OAuth = require('OAuth'); + var OAuth = require('oauth'); it('tests trends Twitter API v1.1',function(done){ var oauth = new OAuth.OAuth( @@ -50,7 +50,7 @@ describe('OAuth1.0',function(){ ## OAuth2.0 ```javascript describe('OAuth2',function(){ - var OAuth = require('OAuth'); + var OAuth = require('oauth'); it('gets bearer token', function(done){ var OAuth2 = OAuth.OAuth2;